summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2023-12-11 22:45:49 +0100
committerMinijackson <minijackson@riseup.net>2023-12-11 22:45:49 +0100
commit59f20ebedeb7901e23ce03299959aed140b3fb45 (patch)
treead740e18dd053c60ad2efcda1eeaa4b13eaec072
parent33ccd8c2bd2693625c452bbb1dd224f85159dcb9 (diff)
downloadnixos-config-reborn-59f20ebedeb7901e23ce03299959aed140b3fb45.tar.gz
nixos-config-reborn-59f20ebedeb7901e23ce03299959aed140b3fb45.zip
development: remove unused variables
-rw-r--r--dotfiles/vim/lua/vim-dev.lua1
-rw-r--r--usecases/desktop/development.nix2
2 files changed, 0 insertions, 3 deletions
diff --git a/dotfiles/vim/lua/vim-dev.lua b/dotfiles/vim/lua/vim-dev.lua
index 41d94fd..4d56c9b 100644
--- a/dotfiles/vim/lua/vim-dev.lua
+++ b/dotfiles/vim/lua/vim-dev.lua
@@ -6,7 +6,6 @@ vim.g.rustaceanvim = {
6 }, 6 },
7 -- LSP configuration 7 -- LSP configuration
8 server = { 8 server = {
9 -- cmd = { vim.g.rust_analyzer_path },
10 on_attach = function(client, bufnr) 9 on_attach = function(client, bufnr)
11 on_attach(client, bufnr) 10 on_attach(client, bufnr)
12 11
diff --git a/usecases/desktop/development.nix b/usecases/desktop/development.nix
index 19ee25c..a8bdcbb 100644
--- a/usecases/desktop/development.nix
+++ b/usecases/desktop/development.nix
@@ -118,8 +118,6 @@ in {
118 ]; 118 ];
119 119
120 variables = { 120 variables = {
121 rust_analyzer_path = "${rust-analyzer-unwrapped}/bin/rust-analyzer";
122 luals_base_path = "${lua-language-server}";
123 clangd_path = "${clang-tools}/bin/clangd"; 121 clangd_path = "${clang-tools}/bin/clangd";
124 }; 122 };
125 123