Skip to content

Commit 4527769

Browse files
authored
chore(nixvim): Update config (#113)
# Added - Update flake # Bugfix - Rename options (lspkind and illuminate - Removed `ansiblels` as it's deprecated --------- Signed-off-by: Roel de Cort <roel@decort.tech>
1 parent 823f178 commit 4527769

4 files changed

Lines changed: 49 additions & 48 deletions

File tree

config/plugins/cmp/lspkind.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
plugins.lspkind = {
33
enable = true;
4-
symbolMap = {
5-
Copilot = " ";
6-
};
7-
extraOptions = {
4+
settings = {
5+
symbol_map = {
6+
Copilot = " ";
7+
};
88
maxwidth = 50;
99
ellipsis_char = "...";
1010
};
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
{
22
plugins.illuminate = {
33
enable = true;
4-
underCursor = false;
5-
filetypesDenylist = [
6-
"Outline"
7-
"TelescopePrompt"
8-
"alpha"
9-
"harpoon"
10-
"reason"
11-
];
4+
settings = {
5+
under_cursor = false;
6+
filetypes_denylist = [
7+
"Outline"
8+
"TelescopePrompt"
9+
"alpha"
10+
"harpoon"
11+
"reason"
12+
];
13+
};
1214
};
1315
}

config/plugins/lsp/lsp.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@
3838
terraformls = {
3939
enable = true;
4040
};
41-
ansiblels = {
42-
enable = true;
43-
};
4441
jsonls = {
4542
enable = true;
4643
};
@@ -70,8 +67,10 @@
7067
"http://json.schemastore.org/ansible-playbook" = "*play*.{yml,yaml}";
7168
"http://json.schemastore.org/chart" = "Chart.{yml,yaml}";
7269
"https://json.schemastore.org/dependabot-v2" = ".github/dependabot.{yml,yaml}";
73-
"https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json" = "*docker-compose*.{yml,yaml}";
74-
"https://raw.githubusercontent.com/argoproj/argo-workflows/master/api/jsonschema/schema.json" = "*flow*.{yml,yaml}";
70+
"https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json" =
71+
"*docker-compose*.{yml,yaml}";
72+
"https://raw.githubusercontent.com/argoproj/argo-workflows/master/api/jsonschema/schema.json" =
73+
"*flow*.{yml,yaml}";
7574
};
7675
};
7776
};

flake.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)