mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
29 lines
1,014 B
Lua
29 lines
1,014 B
Lua
return {
|
|
{ "wakatime/vim-wakatime", lazy = false },
|
|
{ "voldikss/vim-floaterm" },
|
|
{ "CRAG666/betterTerm.nvim", opts = {
|
|
position = "bot",
|
|
size = 15,
|
|
} },
|
|
{ "CRAG666/code_runner.nvim", config = true },
|
|
{ import = "plugins.mod.obsidian-nvim" },
|
|
{ import = "plugins.mod.which-keys-nvim" },
|
|
{
|
|
"github/copilot.vim",
|
|
lazy = false,
|
|
},
|
|
{
|
|
"folke/flash.nvim",
|
|
event = "VeryLazy",
|
|
---@type Flash.Config
|
|
opts = {},
|
|
-- stylua: ignore
|
|
keys = {
|
|
{ "s", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash" },
|
|
{ "S", mode = { "n", "x", "o" }, function() require("flash").treesitter() end, desc = "Flash Treesitter" },
|
|
{ "r", mode = "o", function() require("flash").remote() end, desc = "Remote Flash" },
|
|
{ "R", mode = { "o", "x" }, function() require("flash").treesitter_search() end, desc = "Treesitter Search" },
|
|
{ "<c-s>", mode = { "c" }, function() require("flash").toggle() end, desc = "Toggle Flash Search" },
|
|
},
|
|
},
|
|
}
|