diff options
Diffstat (limited to 'fnl')
| -rw-r--r-- | fnl/plugins/colorscheme.fnl | 12 | ||||
| -rw-r--r-- | fnl/plugins/lualine.fnl | 2 | ||||
| -rw-r--r-- | fnl/plugins/treesitter.fnl | 1 | ||||
| -rw-r--r-- | fnl/plugins/unison.fnl | 11 |
4 files changed, 21 insertions, 5 deletions
diff --git a/fnl/plugins/colorscheme.fnl b/fnl/plugins/colorscheme.fnl index 2d913ca..96ad95c 100644 --- a/fnl/plugins/colorscheme.fnl +++ b/fnl/plugins/colorscheme.fnl @@ -1,12 +1,16 @@ ;; Load neovim colorscheme. -(local opts {:styles {:type {:bold true} +(local opts {:theme :dark + :styles {:type {:bold true} :lsp {:underline true} :match_paren {:underline true}}}) (λ config [] (let [plugin (require :no-clown-fiesta)] - (plugin.setup opts) - (plugin.load))) + (plugin.load opts))) -{1 :aktersnurra/no-clown-fiesta.nvim :lazy false :priority 1000 : config} +{1 :aktersnurra/no-clown-fiesta.nvim + :lazy false + :priority 1000 + : config + :dev true} diff --git a/fnl/plugins/lualine.fnl b/fnl/plugins/lualine.fnl index b22b1dc..b331e79 100644 --- a/fnl/plugins/lualine.fnl +++ b/fnl/plugins/lualine.fnl @@ -55,7 +55,7 @@ :timer {:progress_enddelay 500 :lsp_client_name_enddelay 500}}) (local opts {:options {:icons_enabled true - :theme :auto + :theme :no-clown-fiesta :component_separators "" :section_separators {:left "" :right ""} :disabled_filetypes disable diff --git a/fnl/plugins/treesitter.fnl b/fnl/plugins/treesitter.fnl index e2a4b96..76a1e29 100644 --- a/fnl/plugins/treesitter.fnl +++ b/fnl/plugins/treesitter.fnl @@ -24,6 +24,7 @@ :rust :sql :toml + :unison :vim :vimdoc :xml diff --git a/fnl/plugins/unison.fnl b/fnl/plugins/unison.fnl new file mode 100644 index 0000000..ba03ad7 --- /dev/null +++ b/fnl/plugins/unison.fnl @@ -0,0 +1,11 @@ +;; Unison lang support + +(λ config [plugin] + (vim.opt.rtp:append (.. plugin.dir :/editor-support/vim)) + ((. (require :lazy.core.loader) :packadd) (.. plugin.dir :/editor-support/vim))) + +(λ init [plugin] + ((. (require :lazy.core.loader) :ftdetect) (.. plugin.dir + :/editor-support/vim))) + +{1 :unisonweb/unison :branch :trunk : config : init} |