1
0
Fork 0

nvim: Load plugins lazily based on file type

This commit is contained in:
coderkun 2025-01-05 15:47:42 +01:00
commit 212cbed679
6 changed files with 12 additions and 0 deletions

View file

@ -7,6 +7,8 @@ return {
opts = {},
},
},
lazy = true,
ft = { "java", "go", "python" },
keys = {
{ "<leader>du", function() require("dapui").toggle({ }) end, desc = "Dap UI" },
{ "<leader>de", function() require("dapui").eval() end, desc = "Eval", mode = {"n", "v"} },