fix(nvim): update settings
This commit is contained in:
parent
70132fb2ab
commit
30085af9c1
@ -7,6 +7,9 @@
|
|||||||
luaLoader.enable = true;
|
luaLoader.enable = true;
|
||||||
|
|
||||||
opts = {
|
opts = {
|
||||||
|
# Autosave when changing buffers
|
||||||
|
autowrite = true;
|
||||||
|
|
||||||
# Enable relative line numbers
|
# Enable relative line numbers
|
||||||
number = true;
|
number = true;
|
||||||
relativenumber = true;
|
relativenumber = true;
|
||||||
@ -78,6 +81,16 @@
|
|||||||
# Place a column line
|
# Place a column line
|
||||||
colorcolumn = "80";
|
colorcolumn = "80";
|
||||||
|
|
||||||
|
# Customize sidebar characters
|
||||||
|
fillchars = {
|
||||||
|
foldopen = "";
|
||||||
|
foldclose = "";
|
||||||
|
fold = " ";
|
||||||
|
foldsep = " ";
|
||||||
|
diff = "╱";
|
||||||
|
eob = " ";
|
||||||
|
};
|
||||||
|
|
||||||
# Reduce which-key timeout to 10ms
|
# Reduce which-key timeout to 10ms
|
||||||
timeoutlen = 10;
|
timeoutlen = 10;
|
||||||
|
|
||||||
@ -104,6 +117,7 @@
|
|||||||
|
|
||||||
# We don't need to see things like INSERT anymore
|
# We don't need to see things like INSERT anymore
|
||||||
showmode = false;
|
showmode = false;
|
||||||
|
showcmd = false;
|
||||||
|
|
||||||
# Maximum number of items to show in the popup menu (0 means "use available screen space")
|
# Maximum number of items to show in the popup menu (0 means "use available screen space")
|
||||||
pumheight = 0;
|
pumheight = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user