Disable automatic window resizing.
parent
12ff0c21d6
commit
d0cf9f8722
|
@ -115,10 +115,11 @@ in
|
||||||
vim.g.mapleader = ' '
|
vim.g.mapleader = ' '
|
||||||
vim.g.maplocalleader = '\\'
|
vim.g.maplocalleader = '\\'
|
||||||
vim.o.colorcolumn = '80,100'
|
vim.o.colorcolumn = '80,100'
|
||||||
vim.o.expandtab = true -- Spaces instead of tabs.
|
vim.o.equalalways = false -- Disable auto window resize.
|
||||||
vim.o.list = true -- Show hidden characters.
|
vim.o.expandtab = true -- Spaces instead of tabs.
|
||||||
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
|
vim.o.list = true -- Show hidden characters.
|
||||||
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
|
vim.o.shiftwidth = 2 -- # of spaces to use for each (auto)indent.
|
||||||
|
vim.o.tabstop = 2 -- # of spaces a <Tab> in the file counts for.
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue