aboutsummaryrefslogtreecommitdiff
path: root/fnl/layouts/quiet.fnl
blob: 3435628e14d6e8aae9558338a0e685f9d85c81af (plain)
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 "~"}))
}