From 8e38f7406f5cee213562950bf23e0d44d6562e44 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Thu, 28 Nov 2024 13:01:59 -0600 Subject: add option for title and tabline minitab plugin --- lua/tjk/options.lua | 3 ++- lua/tjk/plugins/tabline.lua | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 lua/tjk/plugins/tabline.lua 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 diff --git a/lua/tjk/plugins/tabline.lua b/lua/tjk/plugins/tabline.lua new file mode 100644 index 0000000..dbac957 --- /dev/null +++ b/lua/tjk/plugins/tabline.lua @@ -0,0 +1,4 @@ +return { + url = "https://git.tjkeller.xyz/minitab.nvim", + config = true, +} -- cgit v1.2.3