From 12253d3e7c209f6aa77fe58e95a644eb355e1548 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Sat, 7 Dec 2024 08:48:56 +0100 Subject: Configure airline et al., remap to backslash Having as a lead to a large lag (known for neovim with the configuration). --- nvim/lua/plugins/airline.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nvim/lua/plugins/airline.lua (limited to 'nvim/lua/plugins/airline.lua') 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, + } +} -- cgit v1.2.1