diff options
author | sefidel <contact@sefidel.net> | 2023-02-27 15:30:16 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-27 15:30:16 +0900 |
commit | 97a4eb0b5acbd16e4d8bca0829cca95d92a44776 (patch) | |
tree | 7d34c9cf6f07a478d141239009461ef26b928326 /fnl/nvrc | |
parent | c5221857d7ea6a3079f3a517d70c47523488eb2e (diff) | |
download | nvimrc-97a4eb0b5acbd16e4d8bca0829cca95d92a44776.tar.gz nvimrc-97a4eb0b5acbd16e4d8bca0829cca95d92a44776.zip |
feat(packs/treesitter,lspconfig): add go
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/packs/lspconfig.fnl | 1 | ||||
-rw-r--r-- | fnl/nvrc/packs/treesitter.fnl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/fnl/nvrc/packs/lspconfig.fnl b/fnl/nvrc/packs/lspconfig.fnl index a48345d..b97cd7a 100644 --- a/fnl/nvrc/packs/lspconfig.fnl +++ b/fnl/nvrc/packs/lspconfig.fnl @@ -32,4 +32,5 @@ :signs false})) (init_lsp :hls) +(init_lsp :gopls) (init_lsp :ltex {:settings {:ltex {:language :en-GB}}}) diff --git a/fnl/nvrc/packs/treesitter.fnl b/fnl/nvrc/packs/treesitter.fnl index 5f5b94c..dc54799 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 :comment] +(setup {:ensure_installed [:fennel :lua :nix :rust :haskell :c :go :comment] :highlight {:enable true :use_languagetree true} :incremental_selection {:enable true :keymaps {:init_selection :gnn |