1 2 3 4 5 6 7 8 9 10 11
{ :enable (fn [] (tset vim.opt :number false) (tset vim.o :signcolumn :no) (tset vim.opt :fillchars {:eob " "})) :disable (fn [] (tset vim.opt :number true) (tset vim.o :signcolumn :yes) (tset vim.opt :fillchars {:eob "~"})) }