nyoom-engineering/nyoom.nvim

Changing window title doesn't work

itaysharir opened this issue · 1 comments

I tried to change the window title by adding

vim.opt.title = true
vim.opt.titlelen = 0 -- do not shorten title
vim.opt.titlestring = 'nvim %{expand("%:p")}' 

To the end of my init.lua but it didn't work. It did work when i deleted the rest of the init.lua though. So what's preventing this from working?

The equivalent fennel code is below:

(set! title)
(set! titlelen 0)
(set! titlestring "nvim %{expand(\"%:p\")}")

It works for me
image

Make sure to put it at the end of your config.fnl, let me know if you need anything