diff options
author | Johannes Ranke <johannes.ranke@jrwb.de> | 2024-12-07 08:48:56 +0100 |
---|---|---|
committer | Johannes Ranke <johannes.ranke@jrwb.de> | 2024-12-07 08:48:56 +0100 |
commit | 12253d3e7c209f6aa77fe58e95a644eb355e1548 (patch) | |
tree | 28eec5029716e38ce2decda13b6da02f3bfc658b /nvim/lua/plugins/airline.lua | |
parent | 7574a02db9487ca02b15d17d01066c5d5ea8f83c (diff) |
Configure airline et al., remap <Leader> to backslashnvim-lua
Having <Space> as a <Leader> lead to a large lag (known for neovim
with the configuration).
Diffstat (limited to 'nvim/lua/plugins/airline.lua')
-rw-r--r-- | nvim/lua/plugins/airline.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nvim/lua/plugins/airline.lua b/nvim/lua/plugins/airline.lua new file mode 100644 index 0000000..a52e9be --- /dev/null +++ b/nvim/lua/plugins/airline.lua @@ -0,0 +1,15 @@ +return { + -- airline + { "vim-airline/vim-airline", + init = function() + vim.g.airline_powerline_fonts = 1 + vim.g["airline#extensions#tabline#enabled"] = 1 + vim.g["airline#extensions#branch#enabled"] = 1 + end, + }, + { "vim-airline/vim-airline-themes", + init = function() + vim.g.airline_theme = 'wombat' + end, + } +} |