1
0
Fork 0

nvim: set terminal title

This commit is contained in:
tastytea 2022-08-28 21:12:23 +02:00
parent 095e0cefc5
commit 4a72940690
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ local options = {
laststatus = 3, -- global statusline
formatoptions = vim.o.formatoptions .. 'n',
splitright = true, -- split vertical window right
shada = [['1000,<50,s10,h]] -- save last 1000 files
shada = [['1000,<50,s10,h]], -- save last 1000 files
title = true, -- set terminal title
}
for k, v in pairs(options) do
vim.o[k] = v