1
0
Fork 0

nvim: always interpret modeline

This commit is contained in:
tastytea 2023-06-29 12:19:08 +02:00
parent 29a4264fac
commit a790471913
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ local options = {
shada = [['1000,<50,s10,h]], -- save last 1000 files
title = true, -- set terminal title
spelllang = 'en', -- words from all regions
signcolumn = 'yes' -- always show sign column
signcolumn = 'yes', -- always show sign column
modeline = true -- always interpret modeline
}
for k, v in pairs(options) do
vim.o[k] = v