Skip to content

Commit 78fcbba

Browse files
committedMar 9, 2025
Update flake.lock and fix all evaluation warnings
1 parent e5bbf8e commit 78fcbba

File tree

7 files changed

+75
-193
lines changed

7 files changed

+75
-193
lines changed
 

‎config/default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
./ui/telescope.nix
1717
./ui/zen-mode.nix
1818
./ui/undotree.nix
19+
./ui/web-devicons.nix
1920

2021
# Vim Improvements
2122
./improvements/repeat.nix

‎config/improvements/surround.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
plugins.surround.enable = true;
3-
}
2+
plugins.vim-surround.enable = true;
3+
}

‎config/language/colorizer.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
plugins.nvim-colorizer.enable = true;
3-
}
2+
plugins.colorizer.enable = true;
3+
}

‎config/lsp/copilot.nix

+16-14
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,24 @@
22
plugins.copilot-lua = {
33
enable = true;
44

5-
panel.enabled = false;
6-
suggestion.enabled = false;
5+
settings = {
6+
panel.enabled = false;
7+
suggestion.enabled = false;
78

8-
filetypes = {
9-
yaml = false;
10-
markdown = false;
11-
help = false;
12-
gitcommit = false;
13-
gitrebase = false;
14-
hgcommit = false;
15-
svn = false;
16-
cvs = false;
17-
"." = false;
18-
"*" = true;
9+
filetypes = {
10+
yaml = false;
11+
markdown = false;
12+
help = false;
13+
gitcommit = false;
14+
gitrebase = false;
15+
hgcommit = false;
16+
svn = false;
17+
cvs = false;
18+
"." = false;
19+
"*" = true;
20+
};
1921
};
2022
};
2123

2224
plugins.copilot-cmp.enable = true;
23-
}
25+
}

‎config/lsp/lsp.nix

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
servers = {
66
# TypeScript / JavaScript
7-
tsserver.enable = true;
7+
ts_ls.enable = true;
88

99
# HTML
1010
html.enable = true;
@@ -16,7 +16,7 @@
1616
jsonls.enable = true;
1717

1818
# Rust
19-
rust-analyzer = {
19+
rust_analyzer = {
2020
enable = true;
2121
installRustc = true;
2222
installCargo = true;
@@ -32,10 +32,10 @@
3232
yamlls.enable = true;
3333

3434
# Lua
35-
lua-ls.enable = true;
35+
lua_ls.enable = true;
3636

3737
# Nix
38-
nil-ls.enable = true;
38+
nil_ls.enable = true;
3939
};
4040
};
4141

@@ -56,4 +56,4 @@
5656
command = "setlocal spell";
5757
}
5858
];
59-
}
59+
}

‎config/ui/web-devicons.nix

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
plugins.web-devicons.enable = true;
3+
}

‎flake.lock

+46-170
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.