Updating to address Lazy.nvim changes.
This commit is contained in:
parent
6dd28266f7
commit
da51944598
2 changed files with 5 additions and 13 deletions
|
@ -324,7 +324,7 @@ require("lazy").setup({
|
|||
-- -------------------------------------------------------------------------
|
||||
{
|
||||
'benknoble/vim-racket',
|
||||
event = 'BufReadPre,BufNewFile *.rkt',
|
||||
event = { 'BufNewFile *.rkt', 'BufReadPre *.rkt' },
|
||||
lazy = true,
|
||||
},
|
||||
|
||||
|
@ -332,7 +332,7 @@ require("lazy").setup({
|
|||
-- -------------------------------------------------------------------------
|
||||
{
|
||||
'bakpakin/janet.vim',
|
||||
event = 'BufReadPre,BufNewFile *.janet',
|
||||
event = { 'BufNewFile *.janet', 'BufReadPre *.janet' },
|
||||
lazy = true
|
||||
},
|
||||
|
||||
|
@ -340,15 +340,7 @@ require("lazy").setup({
|
|||
-- -------------------------------------------------------------------------
|
||||
{
|
||||
'aklt/plantuml-syntax',
|
||||
event = 'BufReadPre,BufNewFile *.puml',
|
||||
lazy = true,
|
||||
},
|
||||
|
||||
-- Terraform
|
||||
-- -------------------------------------------------------------------------
|
||||
{
|
||||
'hashivim/vim-terraform',
|
||||
event = 'BufReadPre,BufNewFile *.tf',
|
||||
event = { 'BufNewFile *.puml', 'BufReadPre *.puml' },
|
||||
lazy = true,
|
||||
},
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ require'nvim-treesitter.configs'.setup {
|
|||
-- One of "all", "maintained", or a list of languages
|
||||
ensure_installed = {
|
||||
"c", "zig", "bash", "scala", "yaml", "css", "javascript",
|
||||
"latex", "clojure", "lua", "cpp", "hcl", "json", "ocaml",
|
||||
"gleam"
|
||||
"latex", "clojure", "lua", "cpp", "hcl", "json", "ocaml", "toml",
|
||||
"rust", "sql", "python", "gitcommit", "gitignore", "html"
|
||||
},
|
||||
|
||||
-- Install languages synchronously (only applied to `ensure_installed`)
|
||||
|
|
Loading…
Add table
Reference in a new issue