mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
nixvimConfigs: migrate to updated option name for Neovim options
This commit is contained in:
parent
3664b34cd8
commit
59f5519549
@ -22,7 +22,7 @@
|
||||
syntax = true;
|
||||
};
|
||||
|
||||
options = {
|
||||
opts = {
|
||||
encoding = "utf-8";
|
||||
completeopt = [ "menuone" "noselect" ];
|
||||
expandtab = true;
|
||||
|
@ -13,24 +13,24 @@ in
|
||||
colorschemes = lib.mkDefault { kanagawa.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 = "%";
|
||||
|
@ -18,7 +18,7 @@
|
||||
syntax = true;
|
||||
};
|
||||
|
||||
options = {
|
||||
opts = {
|
||||
encoding = "utf-8";
|
||||
completeopt = [ "menuone" "noselect" ];
|
||||
expandtab = true;
|
||||
|
Loading…
Reference in New Issue
Block a user