tabs how i like them

This commit is contained in:
Christoph J. Scherr 2024-07-04 17:51:23 +02:00
parent 33e8aea3f0
commit ea18833a7c
2 changed files with 19 additions and 3 deletions

View File

@ -11,9 +11,9 @@ return {
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
{ 'j-hui/fidget.nvim', opts = {} },
-- `neodev` configures Lua LSP for your Neovim config, runtime and plugins
-- `lazydev` configures Lua LSP for your Neovim config, runtime and plugins
-- used for completion, annotations and signatures of Neovim apis
{ 'folke/neodev.nvim', opts = {} },
{ 'folke/lazydev.nvim' },
},
config = function()
require 'custom.plugins.configs.lsp'

View File

@ -588,7 +588,23 @@ return {
config = function()
-- TODO: add lsp module for lualine
-- Maybe we can steal modules from the nvchad ui
require('lualine').setup()
require('lualine').setup {}
end,
},
{
'akinsho/bufferline.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
{
'tiagovla/scope.nvim',
config = function()
require('scope').setup {}
end,
},
},
config = function()
vim.opt.termguicolors = true
require('bufferline').setup {}
end,
},
}