diff --git a/configs/nixvim/trovebelt/modules/setups/debugging.nix b/configs/nixvim/trovebelt/modules/setups/debugging.nix index d0eb385d..7ebf5386 100644 --- a/configs/nixvim/trovebelt/modules/setups/debugging.nix +++ b/configs/nixvim/trovebelt/modules/setups/debugging.nix @@ -21,7 +21,6 @@ in lldb = { command = "lldb-dap"; - name = "lldb"; }; dart = { diff --git a/configs/nixvim/trovebelt/modules/setups/lsp.nix b/configs/nixvim/trovebelt/modules/setups/lsp.nix index 003686f0..d2290fc0 100644 --- a/configs/nixvim/trovebelt/modules/setups/lsp.nix +++ b/configs/nixvim/trovebelt/modules/setups/lsp.nix @@ -31,7 +31,7 @@ in "efm" # For whatever. "elixirls" # For Elixir. "elmls" # For Elm. - "emmet_ls" # For Emmet support. + "emmet-ls" # For Emmet support. "eslint" # For JavaScript. "gdscript" # For Godot. "gopls" # For Go. @@ -45,7 +45,7 @@ in "kotlin-language-server" # For Kotlin. "lemminx" # For XML. "lua-ls" # For Lua. - "nil_ls" # For Nix. + "nil-ls" # For Nix. "nushell" # For Nushell. "perlpls" # For Perl. "phpactor" # For PHP. diff --git a/configs/nixvim/trovebelt/modules/setups/treesitter.nix b/configs/nixvim/trovebelt/modules/setups/treesitter.nix index 6eb39e9c..d950160d 100644 --- a/configs/nixvim/trovebelt/modules/setups/treesitter.nix +++ b/configs/nixvim/trovebelt/modules/setups/treesitter.nix @@ -27,10 +27,12 @@ in # Enable some more context for me. plugins.treesitter-context = { enable = true; - lineNumbers = true; - maxLines = 7; - mode = "cursor"; - separator = "*"; + settings = { + separator = "*"; + mode = "cursor"; + line_numbers = true; + max_lines = 7; + }; }; # Some niceties for refactoring. diff --git a/configs/nixvim/trovebelt/modules/setups/ui.nix b/configs/nixvim/trovebelt/modules/setups/ui.nix index f2e41c46..8b28a9bc 100644 --- a/configs/nixvim/trovebelt/modules/setups/ui.nix +++ b/configs/nixvim/trovebelt/modules/setups/ui.nix @@ -13,24 +13,24 @@ in colorschemes = lib.mkDefault { gruvbox.enable = true; }; # Make it so that terminal GUI colors are au natural. - options.termguicolors = true; + opts.termguicolors = true; # Show locations you're supposed to be copying from the internet (or your # own code). - options.number = true; + opts.number = true; # Make it easy to count. - options.relativenumber = true; + opts.relativenumber = true; # Make it easy to identify your cursor. - options.cursorline = true; + opts.cursorline = true; # Conceal all of the hidden weapons (or distractions). - options.conceallevel = 1; + opts.conceallevel = 1; # Show them hidden suckers. - options.list = true; - options.listchars = { + opts.list = true; + opts.listchars = { tab = "↦ *"; trail = "·"; nbsp = "%";