From 5d4a749b7c51649bcd3953cd1686856408d08121 Mon Sep 17 00:00:00 2001 From: davidpkj Date: Sat, 3 Dec 2022 22:26:26 +0100 Subject: Merge in dotfiles --- neovim/.config/nvim/lua/plugins/lualine.lua | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 neovim/.config/nvim/lua/plugins/lualine.lua (limited to 'neovim/.config/nvim/lua/plugins/lualine.lua') diff --git a/neovim/.config/nvim/lua/plugins/lualine.lua b/neovim/.config/nvim/lua/plugins/lualine.lua new file mode 100644 index 0000000..353e691 --- /dev/null +++ b/neovim/.config/nvim/lua/plugins/lualine.lua @@ -0,0 +1,34 @@ +require("lualine").setup({ + options = { + theme = "catppuccin", + component_separators = { left = "»", right = "«" }, + section_separators = "", + icons_enabled = true, + globalstatus = true, + }, + sections = { + lualine_a = { + { "mode", color = { gui = "bold" } }, + }, + lualine_b = { + { "branch" }, + { "diff", colored = false }, + }, + lualine_c = { + { "filename", file_status = true }, + { "diagnostics" }, + }, + lualine_x = { + { "filetype" }, + { "fileformat", icons_enabled = false }, + { "encoding" }, + }, + lualine_y = { + { "progress" }, + }, + lualine_z = { + { "location", color = { gui = "bold" } }, + }, + }, + extensions = { "quickfix", "nvim-tree" }, +}) -- cgit v1.2.3