diff options
Diffstat (limited to 'fnl/opt.fnl')
-rw-r--r-- | fnl/opt.fnl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fnl/opt.fnl b/fnl/opt.fnl index 663fdee..ef27af0 100644 --- a/fnl/opt.fnl +++ b/fnl/opt.fnl @@ -1,3 +1,5 @@ +(local util (require :util)) + (tset vim.opt :wrap false) (tset vim.opt :linebreak false) @@ -13,6 +15,7 @@ (local color_change (fn [] (vim.api.nvim_set_hl 0 :Normal {:bg :none}) + (vim.api.nvim_set_hl 0 :SignColumn {:bg :none}) (vim.api.nvim_set_hl 0 :EndOfBuffer {:bg :none}) (vim.api.nvim_set_hl 0 :NormalFloat {:bg :none}) (vim.api.nvim_set_hl 0 :FloatBorder {:bg :none}))) @@ -33,4 +36,4 @@ (tset vim.o :undofile true)) (when (not= _G.settings.layout "") - ((require (.. :layouts. _G.settings.layout)))) + (util.after-setup (require (.. :layouts. _G.settings.layout)))) |