diff --git a/nvim/.config/nvim/fnl/dotfiles/plugin/colorizer.fnl b/nvim/.config/nvim/fnl/dotfiles/plugin/colorizer.fnl index f68db31..306d7ca 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugin/colorizer.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugin/colorizer.fnl @@ -1,13 +1,13 @@ (module dotfiles.plugin.colorizer {autoload {colorizer colorizer}}) -(colorizer.setup {"*" {}} - {:RGB true ; #RGB hex codes, like #F00 - :RRGGBB true ; #RRGGBB hex codes, like #00FF00 - :names true ; "Name" codes like Blue - :RRGGBBAA true ; #RRGGBBAA hex codes - :rgb_fn true ; CSS rgb() and rgba() functions - :hsl_fn true ; CSS hsl() and hsla() functions - :css true ; Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB - :css_fn true ; Enable all CSS *functions*: rgb_fn, hsl_fn - }) +(colorizer.setup [:*] + {:RGB true ; #RGB hex codes, like #F00 + :RRGGBB true ; #RRGGBB hex codes, like #00FF00 + :names true ; "Name" codes like Blue + :RRGGBBAA true ; #RRGGBBAA hex codes + :rgb_fn true ; CSS rgb() and rgba() functions + :hsl_fn true ; CSS hsl() and hsla() functions + :css true ; Enable all CSS features: rgb_fn, hsl_fn, names, RGB, RRGGBB + :css_fn true ; Enable all CSS *functions*: rgb_fn, hsl_fn + }) diff --git a/nvim/.config/nvim/fnl/dotfiles/plugins.fnl b/nvim/.config/nvim/fnl/dotfiles/plugins.fnl index 57e951c..2327aee 100644 --- a/nvim/.config/nvim/fnl/dotfiles/plugins.fnl +++ b/nvim/.config/nvim/fnl/dotfiles/plugins.fnl @@ -52,7 +52,7 @@ :kristijanhusak/vim-dadbod-completion {} :kristijanhusak/vim-dadbod-ui {} :neovim/nvim-lspconfig {:mod :lspconfig} ; NeoVim lsp config - :norcalli/nvim-colorizer.lua {:mode :colorizer} + :norcalli/nvim-colorizer.lua {:mod :colorizer} :nvim-orgmode/orgmode { :mod :orgmode } :nvim-telescope/telescope.nvim {:requires [[:nvim-lua/popup.nvim] [:nvim-lua/plenary.nvim]] :mod :telescope} :nvim-treesitter/nvim-treesitter {:run ":TSUpdate" :mod :treesitter}