add bufferline nvim plugin
change alacritty font to nerdfont patched Hack
This commit is contained in:
parent
20a47f6756
commit
a930277e2b
4 changed files with 35 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
|||
luasnip
|
||||
cmp_luasnip
|
||||
nvim-treesitter.withAllGrammars
|
||||
bufferline-nvim
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ vim.o.signcolumn = "yes"
|
|||
vim.wo.number = true
|
||||
vim.wo.relativenumber = true
|
||||
vim.wo.cursorline = true
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
--[ LSPCONFIG ]--
|
||||
|
||||
|
@ -138,7 +139,8 @@ cmp.setup {
|
|||
},
|
||||
}
|
||||
|
||||
--[ TREESITTER ]---
|
||||
--[ TREESITTER ]--
|
||||
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = {},
|
||||
|
||||
|
@ -148,3 +150,7 @@ require('nvim-treesitter.configs').setup {
|
|||
|
||||
indent = { enable = true },
|
||||
}
|
||||
|
||||
--[ BUFFERLINE ]--
|
||||
|
||||
require("bufferline").setup{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue