summaryrefslogtreecommitdiff
path: root/fnl/core/init.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 12:11:41 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 12:11:41 +0100
commitfdff316fff423dd37a093ce1fff1ab289533305c (patch)
tree84ec37477ea42bd1cd6e809222f6f174bc4bde43 /fnl/core/init.fnl
parentf852c4a1eb792a5553487dd94664d3116d4fcd64 (diff)
Rename core to aktersnurra
Diffstat (limited to 'fnl/core/init.fnl')
-rw-r--r--fnl/core/init.fnl41
1 files changed, 0 insertions, 41 deletions
diff --git a/fnl/core/init.fnl b/fnl/core/init.fnl
deleted file mode 100644
index df07743..0000000
--- a/fnl/core/init.fnl
+++ /dev/null
@@ -1,41 +0,0 @@
-;; Load plugins with lazy.
-
-(local icons (require :icons))
-
-(local opts {:install {:colorscheme [:no-clown-fiesta]}
- :debug false
- :defaults {:lazy false}
- :performance {:cache {:enabled true}
- :rtp {:disabled_plugins [:gzip
- :matchit
- :netrwPlugin
- :tarPlugin
- :tohtml
- :tutor
- :zipPlugin]}}
- :ui {:border :single
- :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 :filled-orb) " ")
- :not_loaded (.. (. icons :orb) " ")
- :plugin (.. (. icons :package) " ")
- :runtime (.. (. icons :vim) " ")
- :source (.. (. icons :code) " ")
- :start (.. (. icons :play) " ")
- :task (.. (. icons :checkmark) " ")
- :list [(.. (. icons :filled-orb) " ")
- (.. (. icons :right-arrow) " ")
- (.. (. icons :star) " ")
- (.. (. icons :line) " ")]}}})
-
-(let [lazy (require :lazy)]
- (vim.keymap.set :n :<leader>y "<cmd>Lazy home<cr>" {:desc :Home})
- (lazy.setup {:spec [{:import :plugins}
- {:import :plugins.lsp.lspconfig}
- {:import :plugins.lsp.mason}]} opts))