neovim: tabs, spaces, oh my!

This commit is contained in:
Daniel Lundin 2022-01-12 15:58:29 +01:00
parent 224a3e2cd3
commit 18c1379b7a

View file

@ -14,10 +14,10 @@ vim.o.backupdir = "/home/dln/.local/share/nvim/backup/"
vim.o.backup = true
--- Indent
vim.bo.autoindent = true
vim.o.autoindent = true
vim.o.breakindent = true
vim.bo.expandtab = true
vim.bo.smartindent = true
vim.o.expandtab = true
vim.o.smartindent = true
vim.o.joinspaces = false
vim.o.listchars = 'extends:,precedes:,nbsp:·,tab:→ ,trail:·'
vim.wo.foldlevel = 99