Refine neovim updates
This commit is contained in:
parent
8fe76f19c0
commit
2a0b4dd306
3 changed files with 10 additions and 5 deletions
|
@ -79,7 +79,12 @@ require('packer').startup(function()
|
|||
use "rafamadriz/friendly-snippets" -- Snippets collection
|
||||
|
||||
-- treesitter syntax highlight
|
||||
use {'nvim-treesitter/nvim-treesitter', run = ':TSUpdate'}
|
||||
use {
|
||||
'nvim-treesitter/nvim-treesitter',
|
||||
run = function()
|
||||
require('nvim-treesitter.install').update({with_sync = true})
|
||||
end
|
||||
}
|
||||
|
||||
-- treesitter plugin for commentstring
|
||||
use 'JoosepAlviste/nvim-ts-context-commentstring'
|
||||
|
@ -112,8 +117,8 @@ require('packer').startup(function()
|
|||
-- Vim <3 Asciidoctor
|
||||
use 'habamax/vim-asciidoctor'
|
||||
|
||||
-- Modern filetype.vim replacement
|
||||
use("nathom/filetype.nvim")
|
||||
-- Modern filetype.vim replacement
|
||||
use("nathom/filetype.nvim")
|
||||
|
||||
end)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue