mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-05 18:44:52 +02:00
chad treesitter autotag replaces 2 plugins
This commit is contained in:
parent
2890ce665e
commit
408ad0680d
2 changed files with 15 additions and 7 deletions
|
@ -9,7 +9,8 @@ require'nvim-treesitter.configs'.setup {
|
|||
updatetime = 25, -- Debounced time for highlighting nodes in the playground from source code
|
||||
persist_queries = false -- Whether the query persists across vim sessions
|
||||
},
|
||||
rainbow = {enable = false},
|
||||
autotag = {enable = true},
|
||||
rainbow = {enable = false}
|
||||
-- refactor = {highlight_definitions = {enable = true}}
|
||||
}
|
||||
|
||||
|
|
|
@ -85,6 +85,14 @@ return require('packer').startup(function(use)
|
|||
use 'mattn/vim-gist'
|
||||
use 'mattn/webapi-vim'
|
||||
|
||||
-- Webdev
|
||||
use 'windwp/nvim-ts-autotag'
|
||||
use 'gennaro-tedesco/nvim-jqx'
|
||||
use 'turbio/bracey.vim'
|
||||
|
||||
-- Registers
|
||||
use 'gennaro-tedesco/nvim-peekup'
|
||||
|
||||
-- General Plugins
|
||||
use 'windwp/nvim-autopairs'
|
||||
use 'kevinhwang91/nvim-bqf'
|
||||
|
@ -94,11 +102,8 @@ return require('packer').startup(function(use)
|
|||
use 'mhinz/vim-startify'
|
||||
use 'metakirby5/codi.vim'
|
||||
use 'psliwka/vim-smoothie'
|
||||
use {'iamcco/markdown-preview.nvim', run = 'cd app && npm install'}
|
||||
use 'moll/vim-bbye'
|
||||
use 'turbio/bracey.vim'
|
||||
use 'AndrewRadev/tagalong.vim'
|
||||
use 'alvan/vim-closetag'
|
||||
use {'iamcco/markdown-preview.nvim', run = 'cd app && npm install'}
|
||||
use 'liuchengxu/vim-which-key'
|
||||
use 'voldikss/vim-floaterm'
|
||||
use 'liuchengxu/vista.vim'
|
||||
|
@ -107,7 +112,8 @@ return require('packer').startup(function(use)
|
|||
use 'junegunn/goyo.vim'
|
||||
use 'andymass/vim-matchup'
|
||||
use 'phaazon/hop.nvim'
|
||||
use 'gennaro-tedesco/nvim-jqx'
|
||||
use 'tpope/vim-sleuth'
|
||||
|
||||
-- TODO put this back when stable for indent lines
|
||||
-- use { 'lukas-reineke/indent-blankline.nvim', branch = 'lua'}
|
||||
-- vim.g.indent_blankline_space_char = ' '
|
||||
|
@ -115,9 +121,10 @@ return require('packer').startup(function(use)
|
|||
-- vim.g.indent_blankline_filetype_exclude = {'help', 'startify'}
|
||||
-- vim.g.indent_blankline_char = '▏'
|
||||
-- vim.g.indent_blankline_use_treesitter=true
|
||||
-- use 'AndrewRadev/tagalong.vim'
|
||||
-- use 'alvan/vim-closetag'
|
||||
-- use 'RRethy/vim-illuminate'
|
||||
-- use 'b3nj5m1n/kommentary'
|
||||
use 'tpope/vim-sleuth'
|
||||
-- use {
|
||||
-- 'glacambre/firenvim',
|
||||
-- run = function()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue