update neovim config to use lazy, fix some issues with screens in general

This commit is contained in:
2025-09-13 04:48:53 -07:00
parent cfcea95348
commit c77e3abf65
23 changed files with 1807 additions and 649 deletions
+19
View File
@@ -0,0 +1,19 @@
return {
"danymat/neogen",
config = function()
require("neogen").setup({
enabled = true,
snippet_engine = "luasnip",
placeholders_hl = "None", -- fixes weird bug where the entire page gets colored with this color
languages = {
python = {
template = {
annotation_convention = "google_docstrings"
}
}
}
})
nmap('<leader>d', ":lua require('neogen').generate()<CR>")
end
}