Skip to content

Commit ab1a8d6

Browse files
Add the bufferline custom plugin
1 parent 7ab92ba commit ab1a8d6

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

init.lua

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,7 @@ require('lazy').setup({
890890
'lua',
891891
'luadoc',
892892
'markdown',
893+
'markdown_inline',
893894
'vim',
894895
'vimdoc',
895896
'go',
@@ -898,6 +899,9 @@ require('lazy').setup({
898899
'gosum',
899900
'hcl',
900901
'terraform',
902+
'dockerfile',
903+
'gitignore',
904+
'json',
901905
},
902906
-- Autoinstall languages that are not installed
903907
auto_install = true,

lua/custom/plugins/bufferline.lua

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
return {
2+
{
3+
'akinsho/bufferline.nvim',
4+
version = '*',
5+
dependencies = 'nvim-tree/nvim-web-devicons',
6+
config = function()
7+
vim.opt.termguicolors = true
8+
require('bufferline').setup {
9+
options = {
10+
numbers = 'none',
11+
bottom = true,
12+
},
13+
}
14+
end,
15+
},
16+
}

0 commit comments

Comments
 (0)