-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.lua
More file actions
43 lines (40 loc) · 770 Bytes
/
init.lua
File metadata and controls
43 lines (40 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- Early plugin deps needed before plugin/ files load
vim.pack.add({
'https://github.com/b0o/schemastore.nvim',
'https://github.com/nvim-lua/plenary.nvim',
'https://github.com/neovim/nvim-lspconfig',
})
require("options")
require("autocmds")
require("keymaps")
vim.lsp.enable({
"astro",
"astro_ls",
"ansiblels",
"arduino_language_server",
"bash_ls",
"biome",
"clangd",
"csharp_ls",
"cssls",
"css_variables_ls",
"cssmodules_ls",
"docker_language_server",
"docker_compose_language_service",
"dockerls",
"emmet_language_server",
"expert",
"gopls",
"html_ls",
"jsonls",
"lua_ls",
"nil_ls",
"pyright",
"rust_analyzer",
"tailwindcss",
"ts_ls",
"yamlls",
"zls",
})