summaryrefslogtreecommitdiff
path: root/fnl/plugins/core
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 01:50:20 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-01-05 01:50:20 +0100
commit2a94573f54c69a9af7536586ab2c03eb88bda5e7 (patch)
tree48e430773d56baef8c751fb8a6b4d76303b61636 /fnl/plugins/core
parent16198ca3bcd0ddd61f8d18280769c6f226b2b7ce (diff)
Refactor
Diffstat (limited to 'fnl/plugins/core')
-rw-r--r--fnl/plugins/core/hotpot.fnl3
-rw-r--r--fnl/plugins/core/lazy.fnl42
2 files changed, 0 insertions, 45 deletions
diff --git a/fnl/plugins/core/hotpot.fnl b/fnl/plugins/core/hotpot.fnl
deleted file mode 100644
index eba8083..0000000
--- a/fnl/plugins/core/hotpot.fnl
+++ /dev/null
@@ -1,3 +0,0 @@
-;; Transpiler for fnl.
-
-{1 :rktjmp/hotpot.nvim}
diff --git a/fnl/plugins/core/lazy.fnl b/fnl/plugins/core/lazy.fnl
deleted file mode 100644
index 30903f5..0000000
--- a/fnl/plugins/core/lazy.fnl
+++ /dev/null
@@ -1,42 +0,0 @@
-;; Lazy opts.
-
-(local icons (require :plugins.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) " ")]}}})
-
-(fn setup [plugins]
- (let [lazy (require :lazy)]
- (vim.keymap.set :n :<leader>y "<cmd>Lazy home<cr>" {:desc :Home})
- (lazy.setup plugins opts)))
-
-{: setup}