Nvim: Fix treesitter and bufferline

This commit is contained in:
Marko Korhonen 2022-04-17 23:23:53 +03:00
parent c96240e269
commit f629ee960f
2 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,5 @@
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
ensure_installed = 'maintained', ensure_installed = 'all',
highlight = {enable = true}, highlight = {enable = true},
indent = {enable = true}, indent = {enable = true},
incremental_selection = {enable = true}, incremental_selection = {enable = true},

View file

@ -34,6 +34,7 @@ require('packer').startup(function()
-- Tabline/bufferline -- Tabline/bufferline
use { use {
'akinsho/nvim-bufferline.lua', 'akinsho/nvim-bufferline.lua',
tag = "*",
requires = 'kyazdani42/nvim-web-devicons' requires = 'kyazdani42/nvim-web-devicons'
} }
@ -108,8 +109,8 @@ require('packer').startup(function()
run = function() vim.fn['firenvim#install'](0) end run = function() vim.fn['firenvim#install'](0) end
} }
-- Vim <3 Asciidoctor -- Vim <3 Asciidoctor
use 'habamax/vim-asciidoctor' use 'habamax/vim-asciidoctor'
end) end)