mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +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;
|
syntax = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
options = {
|
opts = {
|
||||||
encoding = "utf-8";
|
encoding = "utf-8";
|
||||||
completeopt = [ "menuone" "noselect" ];
|
completeopt = [ "menuone" "noselect" ];
|
||||||
expandtab = true;
|
expandtab = true;
|
||||||
|
@ -13,24 +13,24 @@ in
|
|||||||
colorschemes = lib.mkDefault { kanagawa.enable = true; };
|
colorschemes = lib.mkDefault { kanagawa.enable = true; };
|
||||||
|
|
||||||
# Make it so that terminal GUI colors are au natural.
|
# 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
|
# Show locations you're supposed to be copying from the internet (or your
|
||||||
# own code).
|
# own code).
|
||||||
options.number = true;
|
opts.number = true;
|
||||||
|
|
||||||
# Make it easy to count.
|
# Make it easy to count.
|
||||||
options.relativenumber = true;
|
opts.relativenumber = true;
|
||||||
|
|
||||||
# Make it easy to identify your cursor.
|
# Make it easy to identify your cursor.
|
||||||
options.cursorline = true;
|
opts.cursorline = true;
|
||||||
|
|
||||||
# Conceal all of the hidden weapons (or distractions).
|
# Conceal all of the hidden weapons (or distractions).
|
||||||
options.conceallevel = 1;
|
opts.conceallevel = 1;
|
||||||
|
|
||||||
# Show them hidden suckers.
|
# Show them hidden suckers.
|
||||||
options.list = true;
|
opts.list = true;
|
||||||
options.listchars = {
|
opts.listchars = {
|
||||||
tab = "↦ *";
|
tab = "↦ *";
|
||||||
trail = "·";
|
trail = "·";
|
||||||
nbsp = "%";
|
nbsp = "%";
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
syntax = true;
|
syntax = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
options = {
|
opts = {
|
||||||
encoding = "utf-8";
|
encoding = "utf-8";
|
||||||
completeopt = [ "menuone" "noselect" ];
|
completeopt = [ "menuone" "noselect" ];
|
||||||
expandtab = true;
|
expandtab = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user