mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-01 09:47:29 +00:00
feat(nvim): Switched to LazyVim with tweaks
This commit is contained in:
@@ -1,23 +0,0 @@
|
||||
-- A better annotation generator. Supports multiple languages and annotation conventions.
|
||||
-- https://github.com/danymat/neogen
|
||||
return {
|
||||
"danymat/neogen",
|
||||
dependencies = "nvim-treesitter/nvim-treesitter",
|
||||
version = "*",
|
||||
cmd = "Neogen",
|
||||
opts = {
|
||||
snippet_engine = "luasnip",
|
||||
languages = {
|
||||
lua = { template = { annotation_convention = "ldoc" } },
|
||||
typescript = { template = { annotation_convention = "tsdoc" } },
|
||||
typescriptreact = { template = { annotation_convention = "tsdoc" } },
|
||||
},
|
||||
},
|
||||
keys = {
|
||||
{ "<leader>baa", function() require("neogen").generate({ type = "current" }) end, desc = "Current" },
|
||||
{ "<leader>bac", function() require("neogen").generate({ type = "class" }) end, desc = "Class" },
|
||||
{ "<leader>baf", function() require("neogen").generate({ type = "func" }) end, desc = "Function" },
|
||||
{ "<leader>bat", function() require("neogen").generate({ type = "type" }) end, desc = "Type" },
|
||||
{ "<leader>baF", function() require("neogen").generate({ type = "file" }) end, desc = "File" },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user