about summary refs log tree commit diff stats
path: root/modules
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-11 18:04:51 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-11 18:04:51 +0200
commite1567b18e6c3e99306e65cd077d30913b7213860 (patch)
tree758e299ad55d30fdcb998b3a80e3ffc49c0779e9 /modules
parentfeat(services/diffSystem): Init (diff)
downloadnixos-config-e1567b18e6c3e99306e65cd077d30913b7213860.tar.gz
nixos-config-e1567b18e6c3e99306e65cd077d30913b7213860.zip
refactor(conf/nvim/plgs/lsp/servers): Rename to new `nixvim` names
Diffstat (limited to 'modules')
-rw-r--r--modules/home/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix2
-rw-r--r--modules/home/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix2
-rw-r--r--modules/home/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix2
-rw-r--r--modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix2
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/home/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix b/modules/home/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix
index 5a44b500..4f20558c 100644
--- a/modules/home/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix
+++ b/modules/home/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix
@@ -1,6 +1,6 @@
 {...}: {
   programs.nixvim.plugins.lsp.servers = {
-    lua-ls = {
+    lua_ls = {
       enable = true;
       settings.telemetry.enable = false;
     };
diff --git a/modules/home/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix b/modules/home/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix
index ab9e643b..f0cccbdc 100644
--- a/modules/home/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix
+++ b/modules/home/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix
@@ -1,6 +1,6 @@
 {...}: {
   programs.nixvim.plugins.lsp.servers = {
-    nil-ls = {
+    nil_ls = {
       enable = true;
       settings = {
         formatting.command = ["alejandra"];
diff --git a/modules/home/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix b/modules/home/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix
index 3eeb495a..6fbdc998 100644
--- a/modules/home/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix
+++ b/modules/home/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix
@@ -1,7 +1,7 @@
 {pkgs, ...}: {
   programs.nixvim = {
     plugins.lsp.servers = {
-      ruff-lsp = {
+      ruff_lsp = {
         enable = true;
       };
     };
diff --git a/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix b/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
index d58c8f1b..cfd9dba8 100644
--- a/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
+++ b/modules/home/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
@@ -1,6 +1,6 @@
 {...}: {
   programs.nixvim.plugins.lsp.servers = {
-    rust-analyzer = {
+    rust_analyzer = {
       enable = true;
       settings = {
         typing.autoClosingAngleBrackets.enable = true;