diff options
author | amelia squires <[email protected]> | 2025-03-04 20:51:17 -0600 |
---|---|---|
committer | amelia squires <[email protected]> | 2025-03-04 20:51:17 -0600 |
commit | d0257e5b13b6d30a3a74a183d08a766540b62a74 (patch) | |
tree | c230515e8c7c2f5bf89dd861107d0bd0023e6ff8 /fnl/opt.fnl | |
parent | 7d915353bf59ab8f94420bcdd6a17858c9c3962d (diff) |
Diffstat (limited to 'fnl/opt.fnl')
-rw-r--r-- | fnl/opt.fnl | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/fnl/opt.fnl b/fnl/opt.fnl index 2925595..d3ff660 100644 --- a/fnl/opt.fnl +++ b/fnl/opt.fnl @@ -16,18 +16,13 @@ (local color_change (fn [] ;havent found how to make toggleterm to work, it wont switch until you select the window ;possible bug with toggleterm? - (vim.api.nvim_set_hl 0 :Normal {:bg :none :fg :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}) - (vim.api.nvim_set_hl 0 :NvimTreeNormal {:bg :none}) - (vim.api.nvim_set_hl 0 :NormalNC {:bg :none}) - (vim.api.nvim_set_hl 0 :TermCursor {:bg :none}) - (vim.api.nvim_set_hl 0 :TermCursorNC {:bg :none}) - (vim.api.nvim_set_hl 0 :VertSplit {:bg :none}) - (vim.api.nvim_set_hl 0 :LineNr {:bg :none}) - (vim.api.nvim_set_hl 0 :StatusLine {:bg :none}))) + (local groups [:Normal :NormalNC :Comment :Constant :Special :Identifier + :Statement :PreProc :Type :Underlined :Todo :String :Function + :Conditional :Repeat :Operator :Structure :LineNr :NonText + :SignColumn :CursorLine :CursorLineNr :StatusLine :StatusLineNC + :EndOfBuffer :NormalFloat :FloatBorder :NvimTreeNormal :TermCursor :TermCursorNC]) + (each [_ v (pairs groups)] + (vim.api.nvim_set_hl 0 v {:bg :none :fg :none})))) (global _trans_ false) |