mirror of https://github.com/fredrikekre/.dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
380 B
13 lines
380 B
-- Plugins that don't require any advanced config |
|
return { |
|
"vim-airline/vim-airline", |
|
config = function() |
|
vim.g["airline_theme"] = "bubblegum" |
|
vim.g["airline#extensions#tabline#enabled"] = 1 |
|
vim.g["airline_skip_empty_sections"] = 1 |
|
vim.opt.showmode = false |
|
end, |
|
dependencies = { |
|
{"vim-airline/vim-airline-themes"}, |
|
}, |
|
}
|
|
|