mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
nixvimConfigs/trovebelt: migrate config to up-to-date settings
This commit is contained in:
parent
2dd2175250
commit
499ee111e3
@ -21,7 +21,6 @@ in
|
||||
|
||||
lldb = {
|
||||
command = "lldb-dap";
|
||||
name = "lldb";
|
||||
};
|
||||
|
||||
dart = {
|
||||
|
@ -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.
|
||||
|
@ -27,10 +27,12 @@ in
|
||||
# Enable some more context for me.
|
||||
plugins.treesitter-context = {
|
||||
enable = true;
|
||||
lineNumbers = true;
|
||||
maxLines = 7;
|
||||
mode = "cursor";
|
||||
settings = {
|
||||
separator = "*";
|
||||
mode = "cursor";
|
||||
line_numbers = true;
|
||||
max_lines = 7;
|
||||
};
|
||||
};
|
||||
|
||||
# Some niceties for refactoring.
|
||||
|
@ -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 = "%";
|
||||
|
Loading…
Reference in New Issue
Block a user