Neovim: Display tabs as two spaces

This commit is contained in:
Tony Grosinger 2024-07-15 09:19:54 -07:00
parent 9a5e0a62aa
commit 7f685ff8da

View File

@ -72,6 +72,9 @@ vim.opt.showmode = false
-- See `:help 'clipboard'`
vim.opt.clipboard = 'unnamedplus'
-- Display tabs as 2 spaces
vim.opt.tabstop = 2
-- Enable break indent
vim.opt.breakindent = true