Finally modularize neovim configuration
This commit is contained in:
parent
d4ca4668c4
commit
e2697f61fd
16 changed files with 872 additions and 1004 deletions
30
lua/plugins/dev-tools.lua
Normal file
30
lua/plugins/dev-tools.lua
Normal file
|
@ -0,0 +1,30 @@
|
|||
-- Development tools and utilities
|
||||
|
||||
return {
|
||||
{
|
||||
"codersauce/runst.nvim",
|
||||
lazy = false,
|
||||
opts = {},
|
||||
config = function()
|
||||
require("runst").setup()
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"Exafunction/windsurf.vim",
|
||||
event = "BufEnter",
|
||||
},
|
||||
|
||||
{
|
||||
"danymat/neogen",
|
||||
setup = {
|
||||
snippet_engine = "luasnip",
|
||||
},
|
||||
config = function()
|
||||
require("neogen").setup({})
|
||||
local opts = { noremap = true, silent = true }
|
||||
vim.api.nvim_set_keymap("n", "<Leader>dg", ":lua require('neogen').generate()<CR>", opts)
|
||||
end,
|
||||
version = "*",
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue