diff options
-rw-r--r-- | fnl/config/aniseed.fnl | 2 | ||||
-rw-r--r-- | fnl/config/bufdel.fnl | 3 | ||||
-rw-r--r-- | fnl/config/cmd.fnl | 28 | ||||
-rw-r--r-- | fnl/config/colorizer.fnl | 3 | ||||
-rw-r--r-- | fnl/config/diffview.fnl | 5 | ||||
-rw-r--r-- | fnl/config/harpoon.fnl | 2 | ||||
-rw-r--r-- | fnl/config/init.fnl | 46 | ||||
-rw-r--r-- | fnl/config/lir.fnl | 20 | ||||
-rw-r--r-- | fnl/config/lsp/null-ls.fnl | 4 | ||||
-rw-r--r-- | fnl/config/neogit.fnl | 6 | ||||
-rw-r--r-- | fnl/config/project.fnl | 24 | ||||
-rw-r--r-- | fnl/config/stay-in-place.fnl | 3 | ||||
-rw-r--r-- | fnl/config/surround.fnl | 3 | ||||
-rw-r--r-- | fnl/config/symbols-outline.fnl | 3 | ||||
-rw-r--r-- | fnl/config/telescope.fnl | 157 | ||||
-rw-r--r-- | fnl/config/treesitter.fnl | 9 | ||||
-rw-r--r-- | fnl/config/undotree.fnl | 3 | ||||
-rw-r--r-- | fnl/config/util.fnl | 19 | ||||
-rw-r--r-- | fnl/config/window-picker.fnl | 2 | ||||
-rw-r--r-- | fnl/init.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins.fnl | 47 | ||||
-rw-r--r-- | lazy-lock.json | 7 |
22 files changed, 213 insertions, 185 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}] diff --git a/lazy-lock.json b/lazy-lock.json index b06649a..31e82a0 100644 --- a/lazy-lock.json +++ b/lazy-lock.json @@ -1,6 +1,6 @@ { "Comment.nvim": { "branch": "master", "commit": "e89df176e8b38e931b7e71a470f923a317976d86" }, - "LuaSnip": { "branch": "master", "commit": "5570fd797eae0790affb54ea669a150cad76db5d" }, + "LuaSnip": { "branch": "master", "commit": "508b41fb7b2a7f06522f96eb7742d21f025a8512" }, "SchemaStore.nvim": { "branch": "main", "commit": "c55c35929dd4e670af7ab6e2e197a4687baa2076" }, "alpha-nvim": { "branch": "main", "commit": "21a0f2520ad3a7c32c0822f943368dc063a569fb" }, "aniseed": { "branch": "master", "commit": "a7445c340fb7a0529f3c413eb99d3f8d29f50ba2" }, @@ -16,7 +16,7 @@ "friendly-snippets": { "branch": "main", "commit": "484fb38b8f493ceeebf4e6fc499ebe41e10aae25" }, "gitsigns.nvim": { "branch": "main", "commit": "d4f8c01280413919349f5df7daccd0c172143d7c" }, "harpoon": { "branch": "master", "commit": "21d0d1bfa3000e4384740bfaefa0ebc51c773786" }, - "lazy.nvim": { "branch": "main", "commit": "8a3754717162cd453abd8da87a6020beaba17994" }, + "lazy.nvim": { "branch": "main", "commit": "b178daf9dc95b9171ead57a89ea81239cadda2ec" }, "leap.nvim": { "branch": "main", "commit": "a968ab4250840dc879e805f918b4f3b892310a12" }, "lir.nvim": { "branch": "master", "commit": "84af01547e51e15fc97e878330414385eeb825e8" }, "lspkind-nvim": { "branch": "master", "commit": "c68b3a003483cf382428a43035079f78474cd11e" }, @@ -24,7 +24,7 @@ "lualine.nvim": { "branch": "master", "commit": "d8c392dd75778d6258da4e7c55522e94ac389732" }, "mason-lspconfig.nvim": { "branch": "main", "commit": "33a198bc5ee0215ae8ab3f61781b29103cf4ca5a" }, "mason-null-ls.nvim": { "branch": "main", "commit": "c4b4a6fe3cb8d8590b831c22b3475166dc9a894e" }, - "mason.nvim": { "branch": "main", "commit": "369d520350b4c1af40630f90c3703444c40c065a" }, + "mason.nvim": { "branch": "main", "commit": "153fce2d2c4a78b394e50804941e5138dfd16a29" }, "minibar.nvim": { "branch": "master", "commit": "353ca4efaf7fff1566bb02e0d7cb51133c41f660" }, "neogit": { "branch": "master", "commit": "84cf7efba6e4daed11a1185ea09fa553a3ca3d4f" }, "no-clown-fiesta.nvim": { "branch": "master", "commit": "8d4f03c8211a7b5528cd9fa8212d8f1e7baea485" }, @@ -57,7 +57,6 @@ "trouble.nvim": { "branch": "main", "commit": "83ec606e7065adf134d17f4af6bae510e3c491c1" }, "undotree": { "branch": "master", "commit": "1a23ea84bd02c34f50d8e10a8b4bfc89597ffe4e" }, "vim-slash": { "branch": "master", "commit": "31aee09b7ea8893a18fa34f65e63e364fc998444" }, - "vim-startuptime": { "branch": "master", "commit": "cb4c112b9e0f224236ee4eab6bf5153406b3f88b" }, "which-key.nvim": { "branch": "main", "commit": "802219ba26409f325a5575e3b684b6cb054e2cc5" }, "zen-mode.nvim": { "branch": "main", "commit": "4313a5828e4d48c5f2f135f29d46f769a59dcfdc" } }
\ No newline at end of file |