diff options
author | Yigit Sever | 2024-12-06 15:26:49 +0100 |
---|---|---|
committer | Yigit Sever | 2024-12-06 15:26:49 +0100 |
commit | e3cf58f490b021dc905d3d6ce3752773d338e753 (patch) | |
tree | 6c1e82be95ef5e5504ea902a87e9b4bc3f8bad06 | |
parent | 43c929d67ec3b9b5443355e83ca9bd0c267d62a1 (diff) | |
download | dotfiles-e3cf58f490b021dc905d3d6ce3752773d338e753.tar.gz dotfiles-e3cf58f490b021dc905d3d6ce3752773d338e753.tar.bz2 dotfiles-e3cf58f490b021dc905d3d6ce3752773d338e753.zip |
nvim: add neogen
-rw-r--r-- | .config/nvim/lua/plugins/lsp.lua | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index 2fa92c2..cda35bf 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua | |||
@@ -228,9 +228,23 @@ return { | |||
228 | }, | 228 | }, |
229 | { | 229 | { |
230 | "folke/lazydev.nvim", | 230 | "folke/lazydev.nvim", |
231 | ft = "lua", -- only load on lua files | 231 | ft = "lua", |
232 | }, | 232 | }, |
233 | { | 233 | { |
234 | 'fatih/vim-go' | 234 | 'fatih/vim-go' |
235 | }, | ||
236 | { | ||
237 | "danymat/neogen", | ||
238 | config = true, | ||
239 | opts = { | ||
240 | snippet_engine = "luasnip", | ||
241 | languages = { | ||
242 | python = { | ||
243 | template = { | ||
244 | annotation_convention = "reST", | ||
245 | } | ||
246 | } | ||
247 | } | ||
248 | } | ||
235 | } | 249 | } |
236 | } | 250 | } |