aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home.legacy/conf/nvim/plgs/lsp
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:35:44 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:54:51 +0100
commit2122a01f99c6da466b8f0f55c965c11a9043d117 (patch)
tree6c1697afc30a5bb72635bda7db9b5610386a5b71 /modules/home.legacy/conf/nvim/plgs/lsp
parentfix(pkgs/stamp): Fallback to `dot-license` (diff)
downloadnixos-config-2122a01f99c6da466b8f0f55c965c11a9043d117.zip
refactor(modules/legacy/conf/nvim): Move to `by-name`
Diffstat (limited to 'modules/home.legacy/conf/nvim/plgs/lsp')
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/default.nix29
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/keymaps/default.nix70
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/default.nix15
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/bashls.nix5
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ccls.nix5
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ltex.nix39
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix8
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix10
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/openscad.nix17
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/pylyzer.nix12
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/quick-lint-js.nix15
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix10
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix17
-rw-r--r--modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/texlab.nix7
14 files changed, 0 insertions, 259 deletions
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/default.nix b/modules/home.legacy/conf/nvim/plgs/lsp/default.nix
deleted file mode 100644
index b7c1e174..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{...}: {
- imports = [
- ./keymaps
- ./servers
- ];
- programs.nixvim.plugins.lsp = {
- enable = true;
- onAttach =
- ""
- # + ''
- # function(client, bufnr)
- # -- Enable completion triggered by <c-x><c-o>
- # -- vim.api.nvim_buf_set_option(bufnr, 'omnifunc', 'v:lua.vim.lsp.omnifunc')
- # end
- # ''
- ;
- preConfig = ''
- vim.diagnostic.config({
- underline = true,
- -- virtual_text = true,
- virtual_text = {
- source = "always", -- Or "if_many"
- },
- update_in_insert = true,
- severity_sort = true,
- }, nil);
- '';
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/keymaps/default.nix b/modules/home.legacy/conf/nvim/plgs/lsp/keymaps/default.nix
deleted file mode 100644
index b1276639..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/keymaps/default.nix
+++ /dev/null
@@ -1,70 +0,0 @@
-{...}: {
- programs.nixvim = {
- plugins.lsp.keymaps = {
- diagnostic = {
- "N" = {
- action = "goto_prev";
- desc = "go to previous diagnostic message";
- };
- "T" = {
- action = "goto_next";
- desc = "go to next diagnostic message";
- };
- "<space>e" = {
- action = "open_float";
- desc = "open float for the symbol";
- };
- "<space>gq" = {
- action = "setloclist";
- desc = "add buffer diagnostic to the location list (quick-fix)";
- };
- };
- lspBuf = {
- "<space>gD" = {
- action = "declaration";
- desc = "[G]o to [d]eclaration";
- };
- "<space>hi" = {
- action = "hover";
- desc = "Display [h]over [i]nformation";
- };
- "<space>sh" = {
- action = "signature_help";
- desc = "Display [s]ignature [h]elp";
- };
- "<space>wa" = {
- action = "add_workspace_folder";
- desc = "[W]orkspace folder [a]dd";
- };
- "<space>wr" = {
- action = "remove_workspace_folder";
- desc = "[W]orkspace folder [r]emove";
- };
- "<space>rn" = {
- action = "rename";
- desc = "[R]e[n]ame the item under the cursor";
- };
- "<space>ca" = {
- action = "code_action";
- desc = "Open the [c]ode [a]ction menu";
- };
- };
- };
- keymaps = [
- {
- key = "<space>f";
- action.__raw = "function() vim.lsp.buf.format { async = true } end";
- options.desc = "[F]ormat the current buffer (asynchronously)";
- }
- {
- key = "<space>wl";
- action.__raw = ''
- function()
- print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
- end
- '';
- options.desc = "[W]orkspace folders [l]ist";
- }
- ];
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/default.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/default.nix
deleted file mode 100644
index 605046d4..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{...}: {
- imports = [
- # ./servers/pylyzer.nix
- ./servers/bashls.nix
- ./servers/ccls.nix
- ./servers/quick-lint-js.nix
- ./servers/ltex.nix
- ./servers/lua-ls.nix
- ./servers/nil-ls.nix
- ./servers/openscad.nix
- ./servers/ruff-lsp.nix
- ./servers/rust-analyzer.nix
- ./servers/texlab.nix
- ];
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/bashls.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/bashls.nix
deleted file mode 100644
index 0577a335..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/bashls.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- bashls.enable = true;
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ccls.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ccls.nix
deleted file mode 100644
index 0698bcce..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ccls.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- ccls.enable = true;
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ltex.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ltex.nix
deleted file mode 100644
index 3224bc41..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ltex.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- ltex = let
- filetypes = [
- "java"
- "cpp"
- "shell"
- "bash"
-
- "bibtex"
- "context"
- "context.tex"
- "latex"
- "tex"
-
- "markdown"
- "org"
- "restructuredtext"
- "rsweave"
-
- "git-commit"
- "gitcommit"
-
- "mail"
- ];
- in {
- enable = true;
- inherit filetypes;
- settings = {
- enabled = filetypes;
- completionEnabled = false;
- language = "en-CA";
- additionalRules = {
- enablePickyRules = true;
- };
- };
- };
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix
deleted file mode 100644
index 4f20558c..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/lua-ls.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- lua_ls = {
- enable = true;
- settings.telemetry.enable = false;
- };
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix
deleted file mode 100644
index f0cccbdc..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/nil-ls.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- nil_ls = {
- enable = true;
- settings = {
- formatting.command = ["alejandra"];
- };
- };
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/openscad.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/openscad.nix
deleted file mode 100644
index a0221cc4..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/openscad.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{pkgs, ...}: {
- programs.nixvim = {
- extraConfigLuaPost =
- /*
- lua
- */
- ''
- require('lspconfig').openscad_lsp.setup{
- cmd = {"openscad-lsp", "--stdio", "--fmt-style", "WebKit"},
- }
- '';
- extraPackages = with pkgs; [
- openscad-lsp
- clang-tools # Need to satisfy `clang-format` (which is used by openscad-lsp)
- ];
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/pylyzer.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/pylyzer.nix
deleted file mode 100644
index b1042221..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/pylyzer.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{pkgs, ...}: {
- programs.nixvim = {
- extraConfigLuaPost =
- /*
- lua
- */
- ''
- require('lspconfig').pylyzer.setup{}
- '';
- extraPackages = with pkgs; [pylyzer];
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/quick-lint-js.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/quick-lint-js.nix
deleted file mode 100644
index 23c3054a..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/quick-lint-js.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{pkgs, ...}: {
- programs.nixvim = {
- extraConfigLuaPost =
- /*
- lua
- */
- ''
- require('lspconfig').quick_lint_js.setup{
- }
- '';
- extraPackages = with pkgs; [
- quick-lint-js
- ];
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix
deleted file mode 100644
index 6fbdc998..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/ruff-lsp.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{pkgs, ...}: {
- programs.nixvim = {
- plugins.lsp.servers = {
- ruff_lsp = {
- enable = true;
- };
- };
- extraPackages = with pkgs; [ruff];
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
deleted file mode 100644
index 5da61a71..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/rust-analyzer.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- rust_analyzer = {
- enable = true;
- settings = {
- typing.autoClosingAngleBrackets.enable = true;
-
- # Check with `cargo clippy` instead of just `cargo check`
- check.command = "clippy";
- };
- # NOTE: These should be provided by the devenv, to support nightly and
- # such things <2023-11-25>
- installCargo = false;
- installRustc = false;
- };
- };
-}
diff --git a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/texlab.nix b/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/texlab.nix
deleted file mode 100644
index 59af8d39..00000000
--- a/modules/home.legacy/conf/nvim/plgs/lsp/servers/servers/texlab.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{...}: {
- programs.nixvim.plugins.lsp.servers = {
- texlab = {
- enable = true;
- };
- };
-}