feat(plugins): actualy load them.

This commit is contained in:
CronyAkatsuki 2025-10-20 19:04:07 +02:00
parent 1f52e22b17
commit 9b3b9ccf31
3 changed files with 9 additions and 3 deletions

View file

@ -4,3 +4,6 @@ vim.g.maplocalleader = ";"
-- source current file
vim.keymap.set("n", "<Leader> ", ":update<CR> :source<CR>")
-- format
vim.keymap.set("n", "<Leader>lf", vim.lsp.buf.format)

View file

@ -1 +1,3 @@
require("plugins.colorscheme")
require("plugins.treesitter")
require("plugins.lsp")

View file

@ -1,3 +1,4 @@
vim.lsp.enable(
"nixd"
)
vim.lsp.enable({
"nixd",
"lua_ls",
})