feat(plugins): actualy load them.
This commit is contained in:
parent
1f52e22b17
commit
9b3b9ccf31
3 changed files with 9 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -1 +1,3 @@
|
|||
require("plugins.colorscheme")
|
||||
require("plugins.treesitter")
|
||||
require("plugins.lsp")
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
vim.lsp.enable(
|
||||
"nixd"
|
||||
)
|
||||
vim.lsp.enable({
|
||||
"nixd",
|
||||
"lua_ls",
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue