1
0
Fork 0
dotfiles/home/config/nvim/nifoc/theme.fnl

79 lines
3.1 KiB
Plaintext
Raw Normal View History

2023-11-20 20:59:54 +00:00
(import-macros {: colorscheme
: highlight
: highlight-link
: highlight-get-field} :../macros/cmd)
2022-05-12 19:49:19 +00:00
2022-04-16 22:24:03 +00:00
(let [mod {}
o vim.opt
g vim.g
2022-05-01 19:52:10 +00:00
dracula (require :dracula)
2022-05-12 19:49:19 +00:00
dracula-colors (dracula.colors)]
2023-11-20 20:59:54 +00:00
(fn swap-bg-with-fg [fg group]
(highlight group {: fg :bg (highlight-get-field group :fg)}))
2022-08-29 20:36:11 +00:00
(set mod.colors dracula-colors)
2022-04-16 22:24:03 +00:00
(fn mod.setup []
(set g.dracula_show_end_of_buffer false)
(set g.dracula_italic_comment true)
(set o.background :dark)
2022-05-12 19:49:19 +00:00
(colorscheme :dracula)
2022-11-11 14:06:11 +00:00
;; LSP
(highlight-link :LspCodeLens :Comment)
2023-06-26 11:07:19 +00:00
(highlight-link :LspInlayHint :Comment)
2022-08-28 22:33:48 +00:00
;; Tabline
2022-08-29 20:36:11 +00:00
(highlight :TabLine {:fg mod.colors.comment :bg mod.colors.black})
(highlight :TabLineSel {:fg mod.colors.white :bg mod.colors.bg})
(highlight :TabLineFill {:bg mod.colors.black})
2022-05-04 13:03:25 +00:00
;; vim-matchup
2022-08-29 20:36:11 +00:00
(highlight :MatchParen {:fg mod.colors.orange :bold true :italic true})
2022-05-01 19:52:10 +00:00
(highlight :MatchWord {:italic true})
2022-05-04 13:03:25 +00:00
(highlight-link :MatchupVirtualText :Comment)
2022-08-20 19:10:22 +00:00
;; vim-illuminate
2022-08-29 20:36:11 +00:00
(highlight :IlluminatedWordText {:bg mod.colors.selection})
(highlight :IlluminatedWordRead {:bg mod.colors.selection})
2023-03-04 19:07:46 +00:00
(highlight :IlluminatedWordWrite {:bg mod.colors.selection :underline true})
2023-07-16 22:17:50 +00:00
;; rainbow-delimiters
(highlight :RainbowDelimiterRed {:fg mod.colors.red})
(highlight :RainbowDelimiterYellow {:fg mod.colors.yellow})
(highlight :RainbowDelimiterBlue {:fg mod.colors.purple})
(highlight :RainbowDelimiterOrange {:fg mod.colors.orange})
(highlight :RainbowDelimiterGreen {:fg mod.colors.green})
(highlight :RainbowDelimiterViolet {:fg mod.colors.pink})
2023-11-20 20:59:54 +00:00
(highlight :RainbowDelimiterCyan {:fg mod.colors.cyan})
;; cmp
(highlight :CmpItemAbbr {:fg mod.colors.white :bg :NONE})
(highlight :CmpItemAbbrMatch {:fg mod.colors.cyan :bg :NONE :bold true})
(highlight :CmpItemAbbrMatchFuzzy
{:fg mod.colors.cyan :bg :NONE :bold true})
(highlight :CmpItemMenu {:fg mod.colors.purple :bg :NONE :italic true})
(let [cmp-groups [:CmpItemKindField
:CmpItemKindProperty
:CmpItemKindEvent
:CmpItemKindText
:CmpItemKindEnum
:CmpItemKindKeyword
:CmpItemKindConstant
:CmpItemKindConstructor
:CmpItemKindReference
:CmpItemKindFunction
:CmpItemKindStruct
:CmpItemKindClass
:CmpItemKindModule
:CmpItemKindOperator
:CmpItemKindVariable
:CmpItemKindFile
:CmpItemKindUnit
:CmpItemKindSnippet
:CmpItemKindFolder
:CmpItemKindMethod
:CmpItemKindValue
:CmpItemKindEnumMember
:CmpItemKindInterface
:CmpItemKindColor
:CmpItemKindTypeParameter]]
(each [_ group (pairs cmp-groups)]
(swap-bg-with-fg mod.colors.black group))))
2022-04-16 22:24:03 +00:00
mod)