diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2022-06-28 18:26:30 +0200 |
---|---|---|
committer | Adam <adam@adast.xyz> | 2022-07-03 13:40:06 +0100 |
commit | 309e07d8e4f105a5ecc0f79c8ddb474788603f4e (patch) | |
tree | 55d171183d25ad7b88b6679bcf9550683a219a82 /.config | |
parent | fd42124fba3c8da64010abe7d98bb23981a80bd5 (diff) |
nvim: set window title
Diffstat (limited to '.config')
-rw-r--r-- | .config/nvim/lua/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/lua/options.lua b/.config/nvim/lua/options.lua index 72e104f..c188c60 100644 --- a/.config/nvim/lua/options.lua +++ b/.config/nvim/lua/options.lua @@ -35,6 +35,7 @@ set.splitright = true set.splitbelow = true set.cursorline = true set.signcolumn = 'yes' +set.title = true -- Disable default vim plugins local disabled_built_ins = { |