Set expandtab, sw, sts options

This commit is contained in:
Josh Holtrop 2026-05-14 09:16:40 -04:00
parent f58770371f
commit d0df8fb585

View File

@ -9,6 +9,9 @@ vim.cmd([[runtime plugin/fzf-lua.lua]])
-- Show titlestring in GUI window title -- Show titlestring in GUI window title
vim.opt.title = true vim.opt.title = true
vim.opt.titlestring = "%t%m%r%{exists('g:project_name') ? ' : '.g:project_name : ''}" vim.opt.titlestring = "%t%m%r%{exists('g:project_name') ? ' : '.g:project_name : ''}"
vim.opt.expandtab = true
vim.opt.sw = 4
vim.opt.sts = 4
-- Shortcuts -- Shortcuts
vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]]) vim.cmd([[map <C-s> :FzfLua combine pickers=buffers,git_files<CR>]])