update config
This commit is contained in:
parent
9ad2084b16
commit
d827e7bd83
5 changed files with 22 additions and 1 deletions
10
lua/custom/plugins/airline.lua
Normal file
10
lua/custom/plugins/airline.lua
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
return {
|
||||
'vim-airline/vim-airline',
|
||||
dependencies = {
|
||||
'vim-airline/vim-airline-themes',
|
||||
},
|
||||
init = function()
|
||||
vim.g.airline_powerline_fonts = 1
|
||||
vim.g.airline_theme = 'bubblegum'
|
||||
end, -- Lazy load the configuration when vim-airline is loaded
|
||||
}
|
||||
|
|
@ -8,7 +8,6 @@ return {
|
|||
},
|
||||
config = function()
|
||||
require('neo-tree').setup {
|
||||
|
||||
filesystem = {
|
||||
follow_current_file = {
|
||||
enabled = true, -- This will find and focus the file in the active buffer every time
|
||||
|
|
|
|||
5
lua/custom/plugins/scrollbar.lua
Normal file
5
lua/custom/plugins/scrollbar.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
return {
|
||||
'petertriho/nvim-scrollbar',
|
||||
version = '*',
|
||||
config = true,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue