Disable modeline

This commit is contained in:
Josh Holtrop 2026-05-15 15:05:59 -04:00
parent b6a1b042a3
commit 171ac607c7

View File

@ -9,10 +9,12 @@ 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.expandtab = true
vim.opt.sw = 4 vim.opt.sw = 4
vim.opt.sts = 4 vim.opt.sts = 4
vim.opt.colorcolumn = "80,120" vim.opt.colorcolumn = "80,120"
vim.opt.modeline = false
-- 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>]])