tangled
alpha
login
or
join now
da157.id
/
nixvim-cfg
0
fork
atom
0xda157's nixvim config
0
fork
atom
overview
issues
pulls
pipelines
switch back to emmet ls
awwpotato
1 year ago
2dff00f9
88f07457
+10
-6
1 changed file
expand all
collapse all
unified
split
modules
plugins
lsp
default.nix
+10
-6
modules/plugins/lsp/default.nix
···
47
47
zls.enable = true;
48
48
clangd.enable = true; # c/cpp
49
49
# - web dev -
50
50
-
ts_ls.enable = true; # TS/JS
51
51
-
cssls.enable = true;
52
50
tailwindcss.enable = true;
53
53
-
html.enable = true;
54
54
-
astro.enable = true;
55
55
-
svelte.enable = false;
56
56
-
vuels.enable = false;
51
51
+
emmet_ls = {
52
52
+
enable = true;
53
53
+
filetypes = [
54
54
+
"html"
55
55
+
"css"
56
56
+
"jsx"
57
57
+
"tsx"
58
58
+
"svelte"
59
59
+
];
60
60
+
};
57
61
# - config -
58
62
yamlls.enable = true;
59
63
jsonls.enable = true;