diff options
author | amelia squires <[email protected]> | 2025-02-06 18:45:45 -0600 |
---|---|---|
committer | amelia squires <[email protected]> | 2025-02-06 18:45:45 -0600 |
commit | bea349474eddf5b1b4e30e7c2212a1b9503baddf (patch) | |
tree | ead7c3cb149e889b5aa43f32896bad939c0a5c1c /fnl/opt.fnl | |
parent | 27b22ec3312f3c123fb64e63a5be819dce6d0470 (diff) |
update settings
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)))) |