fix(nvim): indentation

This commit is contained in:
Moritz Böhme 2025-04-13 18:14:40 +02:00
parent 4da8981990
commit 184ef24913
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 2 additions and 3 deletions

View file

@ -12,13 +12,13 @@ vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.scrolloff = 4 -- lines of context
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.signcolumn = "yes"
vim.opt.smartcase = true
vim.opt.splitbelow = true
vim.opt.splitright = true
vim.opt.tabstop = 2
vim.opt.termguicolors = true
vim.opt.undofile = true
vim.opt.undolevels = 10000

View file

@ -4,7 +4,6 @@
enable = true;
folding = true;
nixvimInjections = true;
settings.indent.enable = true;
settings.highlight.enable = true;
settings.incremental_selection = {
enable = true;