summaryrefslogtreecommitdiff
path: root/lua/tjk/options.lua
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2024-11-28 13:01:59 -0600
committerTim Keller <tjkeller.xyz>2024-11-28 13:01:59 -0600
commit8e38f7406f5cee213562950bf23e0d44d6562e44 (patch)
tree59d0a5a0a4204508a9c8010b30ec7fef66d0b2f3 /lua/tjk/options.lua
parent43558b3a614de4a9174824b1cb4de8bc1ad147a9 (diff)
downloadnvim-8e38f7406f5cee213562950bf23e0d44d6562e44.tar.xz
nvim-8e38f7406f5cee213562950bf23e0d44d6562e44.zip
add option for title and tabline minitab plugin
Diffstat (limited to 'lua/tjk/options.lua')
-rw-r--r--lua/tjk/options.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/tjk/options.lua b/lua/tjk/options.lua
index 989c6c7..ee54753 100644
--- a/lua/tjk/options.lua
+++ b/lua/tjk/options.lua
@@ -5,9 +5,10 @@ local api = vim.api
opt.autochdir = true -- stay in current directory when opening a file
opt.splitright = true -- open splits on right instead of left
opt.splitbelow = true -- open splits on bottom instead of top
-opt.termguicolors = true -- truecolor in terminal, will be disabled in tty
+opt.termguicolors = true -- truecolor in terminal emulator, will be disabled in tty
opt.wrap = false -- disable word wrapping
opt.cursorline = true -- highlight current line
+opt.title = true -- set window title of the terminal emulator to current nvim buffer
-- line numbers
opt.number = true -- enable line numbers