Skip to content

Commit

Permalink
Fix packer.nvim style example config miss
Browse files Browse the repository at this point in the history
  • Loading branch information
mimikun committed Mar 14, 2024
1 parent 1615114 commit 7759c38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ require('jetpack.packer').startup(function(use)
use {'dracula/vim', as = 'dracula' }
use {'tpope/vim-fireplace', ft = 'clojure' },
use {'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
cmd = ':TSUpdate',
config = function()
require'nvim-treesitter.configs'.setup {
ensure_installed = 'maintained',
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
highlight = { enable = true }
}
end
Expand All @@ -178,10 +178,10 @@ require('jetpack.packer').add {
{'dracula/vim', as = 'dracula' },
{'tpope/vim-fireplace', ft = 'clojure' },
{'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate',
cmd = ':TSUpdate',
config = function()
require'nvim-treesitter.configs'.setup {
ensure_installed = 'maintained',
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" },
highlight = { enable = true }
}
end
Expand Down

0 comments on commit 7759c38

Please sign in to comment.