nixvimConfigs: migrate to updated option name for Neovim options

This commit is contained in:
Gabriel Arazas 2024-04-08 11:12:27 +08:00
parent 3664b34cd8
commit 59f5519549
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 9 additions and 9 deletions

View File

@ -22,7 +22,7 @@
syntax = true;
};
options = {
opts = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;

View File

@ -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 = "%";

View File

@ -18,7 +18,7 @@
syntax = true;
};
options = {
opts = {
encoding = "utf-8";
completeopt = [ "menuone" "noselect" ];
expandtab = true;