diff options
author | Joe <rrbo@proton.me> | 2023-09-05 14:06:02 +0200 |
---|---|---|
committer | Joe <rrbo@proton.me> | 2023-09-05 14:06:02 +0200 |
commit | 48d755f58d4958fd9e3cb0c62fbef3589d6606d0 (patch) | |
tree | 93c0b8d22a3194fc8cb4aa0fc4168185cde0144d /.config/nvim/lua/plugs-config/lualine.lua | |
parent | up (diff) | |
download | dotfiles-bsd-48d755f58d4958fd9e3cb0c62fbef3589d6606d0.tar.gz dotfiles-bsd-48d755f58d4958fd9e3cb0c62fbef3589d6606d0.tar.bz2 dotfiles-bsd-48d755f58d4958fd9e3cb0c62fbef3589d6606d0.tar.xz dotfiles-bsd-48d755f58d4958fd9e3cb0c62fbef3589d6606d0.tar.zst dotfiles-bsd-48d755f58d4958fd9e3cb0c62fbef3589d6606d0.zip |
up
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/lua/plugs-config/lualine.lua | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugs-config/lualine.lua b/.config/nvim/lua/plugs-config/lualine.lua new file mode 100644 index 0000000..ef1c2c3 --- /dev/null +++ b/.config/nvim/lua/plugs-config/lualine.lua @@ -0,0 +1,40 @@ +require('lualine').setup { + options = { + icons_enabled = true, + theme = 'gruvbox', + section_separators = { left = '', right = '' }, + component_separators = { left = '', right = '' }, + disabled_filetypes = { + statusline = {}, + winbar = {}, + }, + ignore_focus = {}, + always_divide_middle = true, + globalstatus = false, + refresh = { + statusline = 1000, + tabline = 1000, + winbar = 1000, + } + }, + sections = { + lualine_a = {'mode'}, + lualine_b = {'branch', 'diff', 'diagnostics'}, + lualine_c = {'filename'}, + lualine_x = {}, + lualine_y = {'filetype'}, + lualine_z = {'location'} + }, + inactive_sections = { + lualine_a = {}, + lualine_b = {}, + lualine_c = {'filename'}, + lualine_x = {}, + lualine_y = {}, + lualine_z = {} + }, + tabline = {}, + winbar = {}, + inactive_winbar = {}, + extensions = {} +} |