dotfiles/neovim/.config/nvim/lua/visuals.lua

44 lines
1014 B
Lua
Raw Normal View History

2022-08-25 14:11:17 +02:00
vim.opt.termguicolors = true
2023-10-19 19:53:56 +02:00
--vim.cmd[[colorscheme iceberg]]
2022-08-25 14:11:17 +02:00
require('lualine').setup {
options = {
2022-10-12 09:33:11 +02:00
icons_enabled = true,
2023-10-19 19:53:56 +02:00
-- theme = 'iceberg_dark',
2022-08-25 14:11:17 +02:00
component_separators = { left = '', right = ''},
section_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'},
2022-10-13 16:29:56 +02:00
lualine_b = {'branch', 'diff', 'diagnostics'},
2022-08-25 14:11:17 +02:00
lualine_c = {'filename'},
2022-10-12 09:33:11 +02:00
lualine_x = {'encoding', 'fileformat', 'filetype'},
2022-08-25 14:11:17 +02:00
lualine_y = {'progress'},
lualine_z = {'location'}
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {'filename'},
lualine_x = {'location'},
lualine_y = {},
lualine_z = {}
},
tabline = {},
winbar = {},
inactive_winbar = {},
extensions = {}
}