fix(nvim): indentation
This commit is contained in:
parent
4da8981990
commit
184ef24913
2 changed files with 2 additions and 3 deletions
|
|
@ -12,13 +12,13 @@ vim.opt.number = true
|
||||||
vim.opt.relativenumber = true
|
vim.opt.relativenumber = true
|
||||||
vim.opt.scrolloff = 4 -- lines of context
|
vim.opt.scrolloff = 4 -- lines of context
|
||||||
vim.opt.shiftround = true -- round indent
|
vim.opt.shiftround = true -- round indent
|
||||||
vim.opt.shiftwidth = 0 -- use tabstop value
|
vim.opt.shiftwidth = 2
|
||||||
|
vim.opt.softtabstop = 2
|
||||||
vim.opt.shortmess:append({ c = true })
|
vim.opt.shortmess:append({ c = true })
|
||||||
vim.opt.signcolumn = "yes"
|
vim.opt.signcolumn = "yes"
|
||||||
vim.opt.smartcase = true
|
vim.opt.smartcase = true
|
||||||
vim.opt.splitbelow = true
|
vim.opt.splitbelow = true
|
||||||
vim.opt.splitright = true
|
vim.opt.splitright = true
|
||||||
vim.opt.tabstop = 2
|
|
||||||
vim.opt.termguicolors = true
|
vim.opt.termguicolors = true
|
||||||
vim.opt.undofile = true
|
vim.opt.undofile = true
|
||||||
vim.opt.undolevels = 10000
|
vim.opt.undolevels = 10000
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
folding = true;
|
folding = true;
|
||||||
nixvimInjections = true;
|
nixvimInjections = true;
|
||||||
settings.indent.enable = true;
|
|
||||||
settings.highlight.enable = true;
|
settings.highlight.enable = true;
|
||||||
settings.incremental_selection = {
|
settings.incremental_selection = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue