summaryrefslogtreecommitdiff
path: root/fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl')
-rw-r--r--fnl/config/aniseed.fnl2
-rw-r--r--fnl/config/bufdel.fnl3
-rw-r--r--fnl/config/cmd.fnl28
-rw-r--r--fnl/config/colorizer.fnl3
-rw-r--r--fnl/config/diffview.fnl5
-rw-r--r--fnl/config/harpoon.fnl2
-rw-r--r--fnl/config/init.fnl46
-rw-r--r--fnl/config/lir.fnl20
-rw-r--r--fnl/config/lsp/null-ls.fnl4
-rw-r--r--fnl/config/neogit.fnl6
-rw-r--r--fnl/config/project.fnl24
-rw-r--r--fnl/config/stay-in-place.fnl3
-rw-r--r--fnl/config/surround.fnl3
-rw-r--r--fnl/config/symbols-outline.fnl3
-rw-r--r--fnl/config/telescope.fnl157
-rw-r--r--fnl/config/treesitter.fnl9
-rw-r--r--fnl/config/undotree.fnl3
-rw-r--r--fnl/config/util.fnl19
-rw-r--r--fnl/config/window-picker.fnl2
-rw-r--r--fnl/init.fnl2
-rw-r--r--fnl/plugins.fnl47
21 files changed, 210 insertions, 181 deletions
diff --git a/fnl/config/aniseed.fnl b/fnl/config/aniseed.fnl
new file mode 100644
index 0000000..c024792
--- /dev/null
+++ b/fnl/config/aniseed.fnl
@@ -0,0 +1,2 @@
+;; Transpiler for fennel to lua.
+{1 :Olical/aniseed}
diff --git a/fnl/config/bufdel.fnl b/fnl/config/bufdel.fnl
new file mode 100644
index 0000000..4719a53
--- /dev/null
+++ b/fnl/config/bufdel.fnl
@@ -0,0 +1,3 @@
+;; Delete buffers.
+
+{1 :ojroques/nvim-bufdel :cmd :BufDel}
diff --git a/fnl/config/cmd.fnl b/fnl/config/cmd.fnl
index 735bbc4..1ae9b58 100644
--- a/fnl/config/cmd.fnl
+++ b/fnl/config/cmd.fnl
@@ -3,85 +3,85 @@
(nvim.create_user_command :OrgAgendaPrompt
(lambda []
- (let [orgmode (util.prequire :orgmode)]
+ (let [orgmode (require :orgmode)]
(orgmode.action :agenda.prompt)))
{:nargs 0})
(nvim.create_user_command :OrgCapturePrompt
(lambda []
- (let [orgmode (util.prequire :orgmode)]
+ (let [orgmode (require :orgmode)]
(orgmode.action :capture.prompt)))
{:nargs 0})
(nvim.create_user_command :CommentNormal
(lambda []
- (let [comment-api (util.prequire :Comment.api)]
+ (let [comment-api (require :Comment.api)]
(comment-api.toggle.linewise.current)))
{:nargs 0})
(nvim.create_user_command :CommentVisual
(lambda []
- (let [comment-api (util.prequire :Comment.api)]
+ (let [comment-api (require :Comment.api)]
(comment-api.toggle.linewise (vim.fn.visualmode))))
{:nargs 0})
(nvim.create_user_command :HarpoonAdd
(lambda []
- (let [harpoon (util.prequire :harpoon.mark)]
+ (let [harpoon (require :harpoon.mark)]
(harpoon.add_file)))
{:nargs 0})
(nvim.create_user_command :HarpoonNext
(lambda []
- (let [harpoon (util.prequire :harpoon.ui)]
+ (let [harpoon (require :harpoon.ui)]
(harpoon.nav_next)))
{:nargs 0})
(nvim.create_user_command :HarpoonPrev
(lambda []
- (let [harpoon (util.prequire :harpoon.ui)]
+ (let [harpoon (require :harpoon.ui)]
(harpoon.nav_prev)))
{:nargs 0})
(nvim.create_user_command :HarpoonUI
(lambda []
- (let [harpoon (util.prequire :harpoon.ui)]
+ (let [harpoon (require :harpoon.ui)]
(harpoon.toggle_quick_menu)))
{:nargs 0})
(nvim.create_user_command :Replace
(lambda []
- (let [spectre (util.prequire :spectre)]
+ (let [spectre (require :spectre)]
(spectre.open)))
{:nargs 0})
(nvim.create_user_command :ReplaceWord
(lambda []
- (let [spectre (util.prequire :spectre)]
+ (let [spectre (require :spectre)]
(spectre.open_visual {:select_word true})))
{:nargs 0})
(nvim.create_user_command :ReplaceInBuf
(lambda []
- (let [spectre (util.prequire :spectre)]
+ (let [spectre (require :spectre)]
(spectre.open_file_search)))
{:nargs 0})
(nvim.create_user_command :RestoreSession
(lambda []
- (let [persistence (util.prequire :persistence)]
+ (let [persistence (require :persistence)]
(persistence.load)))
{:nargs 0})
(nvim.create_user_command :RestoreLastSession
(lambda []
- (let [persistence (util.prequire :persistence)]
+ (let [persistence (require :persistence)]
(persistence.load {:last true})))
{:nargs 0})
(nvim.create_user_command :IgnoreSession
(lambda []
- (let [persistence (util.prequire :persistence)]
+ (let [persistence (require :persistence)]
(persistence.stop)))
{:nargs 0})
diff --git a/fnl/config/colorizer.fnl b/fnl/config/colorizer.fnl
new file mode 100644
index 0000000..553024b
--- /dev/null
+++ b/fnl/config/colorizer.fnl
@@ -0,0 +1,3 @@
+;; Display colors of hex numbers.
+
+{1 :norcalli/nvim-colorizer.lua :cmd :ColorizerToggle :config true}
diff --git a/fnl/config/diffview.fnl b/fnl/config/diffview.fnl
new file mode 100644
index 0000000..9978c2e
--- /dev/null
+++ b/fnl/config/diffview.fnl
@@ -0,0 +1,5 @@
+;; Inspect commits.
+
+{1 :sindrets/diffview.nvim
+ :cmd [:DiffviewFileHistory :DiffviewOpen]
+ :config true}
diff --git a/fnl/config/harpoon.fnl b/fnl/config/harpoon.fnl
index 9bdd81f..41b6b81 100644
--- a/fnl/config/harpoon.fnl
+++ b/fnl/config/harpoon.fnl
@@ -1,5 +1,7 @@
;; Harpoon files for navigation.
+(local util (require :config.util))
+
(fn setup []
(vim.keymap.set :n :<tab>
(fn []
diff --git a/fnl/config/init.fnl b/fnl/config/init.fnl
new file mode 100644
index 0000000..b8bbddf
--- /dev/null
+++ b/fnl/config/init.fnl
@@ -0,0 +1,46 @@
+;; Load all plugin configs.
+
+(local plugins [:config.alpha
+ :config.aniseed
+ :config.autopairs
+ :config.better-escape
+ :config.bqf
+ :config.bufdel
+ :config.cmp
+ :config.colorizer
+ :config.colorscheme
+ :config.comment
+ :config.diffview
+ :config.flit
+ :config.gitsigns
+ :config.harpoon
+ :config.leap
+ :config.lir
+ :config.lsp.lspconfig
+ :config.lsp.mason
+ :config.lsp.null-ls
+ :config.lualine
+ :config.minibar
+ :config.neogit
+ :config.orgmode
+ :config.persistence
+ :config.project
+ :config.spectre
+ :config.stay-in-place
+ :config.surround
+ :config.symbols-outline
+ :config.telescope
+ :config.toggleterm
+ :config.treesitter
+ :config.trim
+ :config.trouble
+ :config.undotree
+ :config.vim-slash
+ :config.which-key
+ :config.window-picker
+ :config.zen])
+
+(let [configs []]
+ (each [_ plugin (pairs plugins)]
+ (table.insert configs (require plugin)))
+ configs)
diff --git a/fnl/config/lir.fnl b/fnl/config/lir.fnl
index 22b15cf..d74b248 100644
--- a/fnl/config/lir.fnl
+++ b/fnl/config/lir.fnl
@@ -30,18 +30,18 @@
{:border :rounded : width : height}))}
:hide_cursor false
:on_init (fn []
- (nvim.buf_set_keymap 0 :x :J
- ":<C-u>lua require(\"lir.mark.actions\").toggle_mark(\"v\")<CR>"
- {:noremap true :silent true}))})
+ (vim.api.nvim_buf_set_keymap 0 :x :J
+ ":<C-u>lua require(\"lir.mark.actions\").toggle_mark(\"v\")<CR>"
+ {:noremap true :silent true}))})
(fn setup []
- (let [lir (require :lir)]
- (let [actions (require :lir.actions)
- mark-actions (require :lir.mark.actions)
- clipboard-actions (require :lir.clipboard.actions)]
- (lir.setup (opts actions mark-actions clipboard-actions))
- (nvim.set_keymap :n "-" ":lua require'lir.float'.toggle()<cr>"
- {:noremap true :silent true}))))
+ (let [actions (require :lir.actions)
+ clipboard-actions (require :lir.clipboard.actions)
+ mark-actions (require :lir.mark.actions)
+ lir (require :lir)]
+ (lir.setup (opts actions mark-actions clipboard-actions))
+ (vim.keymap.set :n "-" ":lua require'lir.float'.toggle()<cr>"
+ {:noremap true :silent true})))
{1 :tamago324/lir.nvim
:keys "-"
diff --git a/fnl/config/lsp/null-ls.fnl b/fnl/config/lsp/null-ls.fnl
index 2d03b0d..13dd493 100644
--- a/fnl/config/lsp/null-ls.fnl
+++ b/fnl/config/lsp/null-ls.fnl
@@ -35,7 +35,9 @@
(mason-null-ls.setup mason-opts)))
{1 :jose-elias-alvarez/null-ls.nvim
- :dependencies [:mason.nvim :jayp0521/mason-null-ls.nvim]
+ :dependencies [:mason.nvim
+ :jayp0521/mason-null-ls.nvim
+ :nvim-lua/plenary.nvim]
:event :BufReadPre
:config (fn []
(setup))}
diff --git a/fnl/config/neogit.fnl b/fnl/config/neogit.fnl
new file mode 100644
index 0000000..b7c1633
--- /dev/null
+++ b/fnl/config/neogit.fnl
@@ -0,0 +1,6 @@
+;; Git ui.
+
+{1 :TimUntersberger/neogit
+ :cmd :Neogit
+ :dependencies [:nvim-lua/plenary.nvim]
+ :config true}
diff --git a/fnl/config/project.fnl b/fnl/config/project.fnl
index eceef84..57cfb9c 100644
--- a/fnl/config/project.fnl
+++ b/fnl/config/project.fnl
@@ -1,15 +1,17 @@
;; Provides project management.
(local opts {:active true
- :on_config_done nil
- :manual_mode false
- :detection_methods [:patterns]
- :patterns [:git :_darcs :.hg :.bzr :.svn :Makefile :package.json]
- :show_hidden false
- :silent_chdir true
- :ignore_lsp {}
- :datapath (vim.fn.stdpath :data)})
+ :on_config_done nil
+ :manual_mode false
+ :detection_methods [:patterns]
+ :patterns [:git :_darcs :.hg :.bzr :.svn :Makefile :package.json]
+ :show_hidden false
+ :silent_chdir true
+ :ignore_lsp {}
+ :datapath (vim.fn.stdpath :data)})
- {1 :ahmedkhalf/project.nvim
- :event :BufReadPre
- :config opts}
+{1 :ahmedkhalf/project.nvim
+ :cmd :Telescope
+ :config (fn []
+ (let [project (require :project_nvim)]
+ (project.setup opts)))}
diff --git a/fnl/config/stay-in-place.fnl b/fnl/config/stay-in-place.fnl
new file mode 100644
index 0000000..b264a05
--- /dev/null
+++ b/fnl/config/stay-in-place.fnl
@@ -0,0 +1,3 @@
+;; Keep cursor at character when indenting.
+
+{1 :gbprod/stay-in-place.nvim :event :BufReadPost :config true}
diff --git a/fnl/config/surround.fnl b/fnl/config/surround.fnl
new file mode 100644
index 0000000..e8fda32
--- /dev/null
+++ b/fnl/config/surround.fnl
@@ -0,0 +1,3 @@
+;; Surround selections.
+
+{1 :kylechui/nvim-surround :event :InsertEnter :config true}
diff --git a/fnl/config/symbols-outline.fnl b/fnl/config/symbols-outline.fnl
new file mode 100644
index 0000000..4195de0
--- /dev/null
+++ b/fnl/config/symbols-outline.fnl
@@ -0,0 +1,3 @@
+;; List tree of symbols.
+
+{1 :simrat39/symbols-outline.nvim :cmd :SymbolsOutline :config true}
diff --git a/fnl/config/telescope.fnl b/fnl/config/telescope.fnl
index ce4fb9c..7f782e1 100644
--- a/fnl/config/telescope.fnl
+++ b/fnl/config/telescope.fnl
@@ -1,90 +1,89 @@
;; Telescope a highly extendable fuzzy finder over lists.
-(local opts {:noremap true :silent true})
-
(fn setup []
- (let [telescope (util.prequire :telescope)]
- (let [actions (require :telescope.actions)]
- (telescope.setup {:defaults {:prompt_prefix "  "
- :selection_caret "> "
- :path_display [:smart]
- :color_devicons false
- :vimgrep_arguments [:rg
- :--color=never
- :--no-heading
- :--with-filename
- :--line-number
- :--column
- :--smart-case
- :--hidden]
- :mappings {:i {:<C-n> actions.cycle_history_next
- :<C-p> actions.cycle_history_prev
- :<C-j> actions.move_selection_next
- :<C-k> actions.move_selection_previous
- :<C-c> actions.close
- :<Down> actions.move_selection_next
- :<Up> actions.move_selection_previous
- :<CR> actions.select_default
- :<C-x> actions.select_horizontal
- :<C-v> actions.select_vertical
- :<C-t> actions.select_tab
- :<C-u> actions.preview_scrolling_up
- :<C-d> actions.preview_scrolling_down
- :<PageUp> actions.results_scrolling_up
- :<PageDown> actions.results_scrolling_down
- :<Tab> (+ actions.toggle_selection
- actions.move_selection_worse)
- :<S-Tab> (+ actions.toggle_selection
- actions.move_selection_better)
- :<C-q> (+ actions.send_to_qflist
- actions.open_qflist)
- :<M-q> (+ actions.send_selected_to_qflist
- actions.open_qflist)
- :<C-l> actions.complete_tag
- :<C-_> actions.which_key}
- :n {:<esc> actions.close
- :<CR> actions.select_default
- :<C-x> actions.select_horizontal
- :<C-v> actions.select_vertical
- :<C-t> actions.select_tab
- :<Tab> (+ actions.toggle_selection
- actions.move_selection_worse)
- :<S-Tab> (+ actions.toggle_selection
- actions.move_selection_better)
- :<C-q> (+ actions.send_to_qflist
- actions.open_qflist)
- :<M-q> (+ actions.send_selected_to_qflist
- actions.open_qflist)
- :j actions.move_selection_next
- :k actions.move_selection_previous
- :H actions.move_to_top
- :M actions.move_to_middle
- :L actions.move_to_bottom
- :<Down> actions.move_selection_next
- :<Up> actions.move_selection_previous
- :gg actions.move_to_top
- :G actions.move_to_bottom
- :q actions.close
- :<C-u> actions.preview_scrolling_up
- :<C-d> actions.preview_scrolling_down
- :<PageUp> actions.results_scrolling_up
- :<PageDown> actions.results_scrolling_down
- :dd actions.delete_buffer
- :? actions.which_key}}}
- :extensions {:fzf {:fuzzy true
- :override_generic_sorter true
- :override_file_sorter true
- :case_mode :smart_case}}})
- (telescope.load_extension :fzf)
- (telescope.load_extension :frecency)
- (telescope.load_extension :orgmode)
- (telescope.load_extension :projects)
- (telescope.load_extension :harpoon))))
+ (let [telescope (require :telescope)
+ actions (require :telescope.actions)]
+ (telescope.setup {:defaults {:prompt_prefix "  "
+ :selection_caret "> "
+ :path_display [:smart]
+ :color_devicons false
+ :vimgrep_arguments [:rg
+ :--color=never
+ :--no-heading
+ :--with-filename
+ :--line-number
+ :--column
+ :--smart-case
+ :--hidden]
+ :mappings {:i {:<C-n> actions.cycle_history_next
+ :<C-p> actions.cycle_history_prev
+ :<C-j> actions.move_selection_next
+ :<C-k> actions.move_selection_previous
+ :<C-c> actions.close
+ :<Down> actions.move_selection_next
+ :<Up> actions.move_selection_previous
+ :<CR> actions.select_default
+ :<C-x> actions.select_horizontal
+ :<C-v> actions.select_vertical
+ :<C-t> actions.select_tab
+ :<C-u> actions.preview_scrolling_up
+ :<C-d> actions.preview_scrolling_down
+ :<PageUp> actions.results_scrolling_up
+ :<PageDown> actions.results_scrolling_down
+ :<Tab> (+ actions.toggle_selection
+ actions.move_selection_worse)
+ :<S-Tab> (+ actions.toggle_selection
+ actions.move_selection_better)
+ :<C-q> (+ actions.send_to_qflist
+ actions.open_qflist)
+ :<M-q> (+ actions.send_selected_to_qflist
+ actions.open_qflist)
+ :<C-l> actions.complete_tag
+ :<C-_> actions.which_key}
+ :n {:<esc> actions.close
+ :<CR> actions.select_default
+ :<C-x> actions.select_horizontal
+ :<C-v> actions.select_vertical
+ :<C-t> actions.select_tab
+ :<Tab> (+ actions.toggle_selection
+ actions.move_selection_worse)
+ :<S-Tab> (+ actions.toggle_selection
+ actions.move_selection_better)
+ :<C-q> (+ actions.send_to_qflist
+ actions.open_qflist)
+ :<M-q> (+ actions.send_selected_to_qflist
+ actions.open_qflist)
+ :j actions.move_selection_next
+ :k actions.move_selection_previous
+ :H actions.move_to_top
+ :M actions.move_to_middle
+ :L actions.move_to_bottom
+ :<Down> actions.move_selection_next
+ :<Up> actions.move_selection_previous
+ :gg actions.move_to_top
+ :G actions.move_to_bottom
+ :q actions.close
+ :<C-u> actions.preview_scrolling_up
+ :<C-d> actions.preview_scrolling_down
+ :<PageUp> actions.results_scrolling_up
+ :<PageDown> actions.results_scrolling_down
+ :dd actions.delete_buffer
+ :? actions.which_key}}}
+ :extensions {:fzf {:fuzzy true
+ :override_generic_sorter true
+ :override_file_sorter true
+ :case_mode :smart_case}}})
+ (telescope.load_extension :fzf)
+ (telescope.load_extension :frecency)
+ (telescope.load_extension :orgmode)
+ (telescope.load_extension :projects)
+ (telescope.load_extension :harpoon)))
{1 :nvim-telescope/telescope.nvim
:cmd :Telescope
:dependencies [:nvim-lua/popup.nvim
:nvim-telescope/telescope-frecency.nvim
+ {1 :nvim-telescope/telescope-fzf-native.nvim :build :make}
:tami5/sqlite.lua
:ahmedkhalf/project.nvim
:nvim-lua/plenary.nvim
diff --git a/fnl/config/treesitter.fnl b/fnl/config/treesitter.fnl
index a8918d2..1d96a13 100644
--- a/fnl/config/treesitter.fnl
+++ b/fnl/config/treesitter.fnl
@@ -28,7 +28,12 @@
:indent {:enable true :disable [:yaml :python :css]}
:playground {:enable true}})
+(fn setup []
+ (let [treesitter (require :nvim-treesitter.configs)]
+ (treesitter.setup opts)))
+
{1 :nvim-treesitter/nvim-treesitter
:build ":TSUpdate"
- :event :BufReadPre
- :config opts}
+ :event :BufReadPost
+ :config (fn []
+ (setup))}
diff --git a/fnl/config/undotree.fnl b/fnl/config/undotree.fnl
new file mode 100644
index 0000000..9aa8114
--- /dev/null
+++ b/fnl/config/undotree.fnl
@@ -0,0 +1,3 @@
+;; Tree of undo history.
+
+{1 :mbbill/undotree :cmd :UndotreeToggle}
diff --git a/fnl/config/util.fnl b/fnl/config/util.fnl
index 7665a57..dbd635f 100644
--- a/fnl/config/util.fnl
+++ b/fnl/config/util.fnl
@@ -1,25 +1,14 @@
;; Utility functions.
(module util {autoload {a aniseed.core nvim aniseed.nvim}})
-(defn prequire [name]
- (let [(ok? plugin) (pcall require name)]
- (if ok?
- plugin
- (vim.notify (.. "Could not load config: " plugin)
- vim.log.levels.WARN))))
-
-(defn setup [plugin config]
- (let [plugin (prequire plugin)]
- (plugin.setup config)))
-
(defn telescope-ext [ext fun opts]
- (let [telescope (prequire :telescope)
- themes (prequire :telescope.themes)
+ (let [telescope (require :telescope)
+ themes (require :telescope.themes)
theme (. opts :theme)]
((. (. (. telescope :extensions) ext) fun) ((. themes theme) opts))))
(defn telescope-builtin [builtin opts]
- (let [telescope (prequire :telescope.builtin)
- themes (prequire :telescope.themes)
+ (let [telescope (require :telescope.builtin)
+ themes (require :telescope.themes)
theme (. opts :theme)]
((. telescope builtin) ((. themes theme) opts))))
diff --git a/fnl/config/window-picker.fnl b/fnl/config/window-picker.fnl
index d03d9e9..831cfe6 100644
--- a/fnl/config/window-picker.fnl
+++ b/fnl/config/window-picker.fnl
@@ -8,7 +8,7 @@
(let [window-picker (require :window-picker)]
(let [win (window-picker.pick_window)]
(if (not= win nil)
- (nvim.set_current_win win)))))
+ (vim.api.nvim_set_current_win win)))))
{1 :s1n7ax/nvim-window-picker
:event :BufReadPost
diff --git a/fnl/init.fnl b/fnl/init.fnl
index 8296dcc..743dc17 100644
--- a/fnl/init.fnl
+++ b/fnl/init.fnl
@@ -3,5 +3,5 @@
(let [lazy (require :lazy)
opts (require :config.lazy)
- plugins (require :plugins)]
+ plugins (require :config)]
(lazy.setup plugins opts))
diff --git a/fnl/plugins.fnl b/fnl/plugins.fnl
deleted file mode 100644
index b315066..0000000
--- a/fnl/plugins.fnl
+++ /dev/null
@@ -1,47 +0,0 @@
-;; List of plugins.
-
-[(require :config.alpha)
- (require :config.autopairs)
- (require :config.better-escape)
- (require :config.bqf)
- (require :config.cmp)
- (require :config.colorscheme)
- (require :config.comment)
- (require :config.flit)
- (require :config.gitsigns)
- (require :config.harpoon)
- (require :config.leap)
- (require :config.lir)
- (require :config.lualine)
- (require :config.minibar)
- (require :config.orgmode)
- (require :config.persistence)
- (require :config.project)
- (require :config.spectre)
- (require :config.telescope)
- (require :config.toggleterm)
- (require :config.treesitter)
- (require :config.trim)
- (require :config.trouble)
- (require :config.vim-slash)
- (require :config.which-key)
- (require :config.window-picker)
- (require :config.zen)
- (require :config.lsp.mason)
- (require :config.lsp.lspconfig)
- (require :config.lsp.null-ls)
- {1 :Olical/aniseed}
- {1 :nvim-telescope/telescope-fzf-native.nvim :build :make}
- {1 :ojroques/nvim-bufdel :cmd :BufDel}
- {1 :mbbill/undotree :cmd :UndotreeToggle}
- {1 :simrat39/symbols-outline.nvim :cmd :SymbolsOutline :config true}
- {1 :gbprod/stay-in-place.nvim :event :BufReadPost :config true}
- {1 :kylechui/nvim-surround :event :InsertEnter :config true}
- {1 :norcalli/nvim-colorizer.lua :cmd :ColorizerToggle :config true}
- {1 :sindrets/diffview.nvim
- :cmd [:DiffviewFileHistory :DiffviewOpen]
- :config true}
- {1 :TimUntersberger/neogit
- :cmd :Neogit
- :dependencies [:nvim-lua/plenary.nvim]
- :config true}]