diff options
author | sefidel <contact@sefidel.net> | 2024-03-28 23:08:55 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-03-29 01:07:37 +0900 |
commit | 1a5ab96f7e695249bbbfdf72c53ccc1eb2f9f399 (patch) | |
tree | 3c712b3e2a7e87380aec4a967dc7bd77548da0cf | |
parent | 0757c2a0abbac1d8fda1e51d964327cd62b1db4a (diff) | |
download | nvimrc-1a5ab96f7e695249bbbfdf72c53ccc1eb2f9f399.tar.gz nvimrc-1a5ab96f7e695249bbbfdf72c53ccc1eb2f9f399.zip |
feat(packs/treesitter): add typst to ensure_installed
-rw-r--r-- | fnl/nvrc/pack.fnl | 2 | ||||
-rw-r--r-- | fnl/nvrc/packs/treesitter.fnl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fnl/nvrc/pack.fnl b/fnl/nvrc/pack.fnl index 87852a5..ca9d29c 100644 --- a/fnl/nvrc/pack.fnl +++ b/fnl/nvrc/pack.fnl @@ -23,7 +23,7 @@ (pack! :p00f/clangd_extensions.nvim {:req :clangd :ft [:c :cpp :objc :objcpp]}) (pack! :chomosuke/typst-preview.nvim {:req :typst-preview :ft :typst :version :0.1.* - :build #(. ((require :typst-preview) :update))}) + :build #((. ((require :typst-preview) :update)))}) (pack! :mfussenegger/nvim-dap {:req :dap :event :VeryLazy :dependencies [(pack :nvim-lua/plenary.nvim) diff --git a/fnl/nvrc/packs/treesitter.fnl b/fnl/nvrc/packs/treesitter.fnl index dc54799..4cd5e55 100644 --- a/fnl/nvrc/packs/treesitter.fnl +++ b/fnl/nvrc/packs/treesitter.fnl @@ -2,7 +2,7 @@ (local colors (require :nvrc.colors)) -(setup {:ensure_installed [:fennel :lua :nix :rust :haskell :c :go :comment] +(setup {:ensure_installed [:fennel :lua :nix :rust :haskell :c :go :typst :comment] :highlight {:enable true :use_languagetree true} :incremental_selection {:enable true :keymaps {:init_selection :gnn |