diff options
author | sefidel <contact@sefidel.net> | 2022-03-18 21:50:28 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-03-18 21:50:28 +0900 |
commit | f4b9da6616d2c7b86643c9ef4a992f1fb99a7d14 (patch) | |
tree | f73802242b1f4ff4249875abe6c470e679a7e050 /fnl | |
parent | 6b3de05ac0bc1193a68436797c317fd0fc18f3e7 (diff) | |
download | nvimrc-f4b9da6616d2c7b86643c9ef4a992f1fb99a7d14.tar.gz nvimrc-f4b9da6616d2c7b86643c9ef4a992f1fb99a7d14.zip |
feat(pack): use picante hotpot
* this experimental branch introduces bytecode cache, which lowers the startup time for approximately 10~12ms (tested on 3700x). * TODO: revert this when the tracking issue is closed.
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/nvrc/pack.fnl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index 94d3aa7..62ba6ed 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -1,7 +1,8 @@ (import-macros {: pack : pack! : unpack!} :nvrc.macro.pack) (pack! :wbthomason/packer.nvim) -(pack! :rktjmp/hotpot.nvim) +; TODO: https://github.com/rktjmp/hotpot.nvim/pull/51 +(pack! :rktjmp/hotpot.nvim {:branch :picante}) (pack! :lewis6991/impatient.nvim) (pack! :boppyt/softjelly.vim {:config "require('nvrc.colors').apply('softjelly')"}) @@ -12,8 +13,7 @@ (pack! :Pocco81/TrueZen.nvim {:cmd :TZAtaraxis}) (pack! :antoinemadec/FixCursorHold.nvim) (pack! :luukvbaal/stabilize.nvim {:init :stabilize}) -(pack! :tamago324/lir.nvim {:req :lir - :requires [(pack :nvim-lua/plenary.nvim)]}) +(pack! :justinmk/vim-dirvish) (pack! :neovim/nvim-lspconfig {:req :lspconfig :requires [(pack :hrsh7th/cmp-nvim-lsp {:after :nvim-cmp}) |