summaryrefslogtreecommitdiff
path: root/fnl/config.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config.fnl')
-rw-r--r--fnl/config.fnl52
1 files changed, 52 insertions, 0 deletions
diff --git a/fnl/config.fnl b/fnl/config.fnl
new file mode 100644
index 0000000..cf50b2f
--- /dev/null
+++ b/fnl/config.fnl
@@ -0,0 +1,52 @@
+;; Load plugins with lazy.
+
+(λ load-plugin [tbl name]
+ (table.insert tbl (require (.. :plugins. name))))
+
+(local icons (require :settings.icons))
+
+(local {: apply-to-files} (require :util.load))
+
+(local opts {:install {:colorscheme [:no-clown-fiesta]}
+ :debug false
+ :defaults {:lazy false}
+ :dev {:path (.. (vim.fn.expand :$HOME) :/projects)}
+ :performance {:cache {:enabled true}
+ :rtp {:disabled_plugins [:gzip
+ :matchit
+ :netrwPlugin
+ :tarPlugin
+ :tohtml
+ :tutor
+ :zipPlugin]}}
+ :ui {:border :single
+ :backdrop 100
+ :icons {:cmd (.. (. icons :cmd) " ")
+ :config (.. (. icons :cog) " ")
+ :event (.. (. icons :lightning) " ")
+ :ft (.. (. icons :document) " ")
+ :init (.. (. icons :cog) " ")
+ :import (.. (. icons :import) " ")
+ :keys (.. (. icons :keyboard) " ")
+ :lazy (.. (. icons :sleep) " ")
+ :loaded (.. (. icons :orb-filled) " ")
+ :not_loaded (.. (. icons :orb) " ")
+ :plugin (.. (. icons :package) " ")
+ :runtime (.. (. icons :vim) " ")
+ :source (.. (. icons :code) " ")
+ :start (.. (. icons :play) " ")
+ :task (.. (. icons :checkmark) " ")
+ :list [(.. (. icons :orb-filled) " ")
+ (.. (. icons :arrow-right) " ")
+ (.. (. icons :star) " ")
+ (.. (. icons :line) " ")]}}})
+
+(λ init []
+ (require :settings)
+ (let [lazy (require :lazy)
+ plugins {}]
+ (apply-to-files :/fnl/plugins (partial load-plugin plugins))
+ (vim.keymap.set :n :<leader>y "<cmd>Lazy home<cr>" {:desc :Home})
+ (lazy.setup plugins opts)))
+
+(init)