about summary refs log tree commit diff stats
path: root/modules/home/conf/nvim/plgs
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/conf/nvim/plgs')
-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;