remove airline stuff
This commit is contained in:
parent
3f6193eb3c
commit
c9f18d83df
|
@ -29,7 +29,3 @@ vim.g.slime_default_config = {
|
|||
socket_name = vim.api.nvim_eval('get(split($TMUX, ","), 0)'),
|
||||
target_pane = "{bottom}",
|
||||
}
|
||||
|
||||
-- Airline
|
||||
vim.g.airline_powerline_fonts = 1
|
||||
vim.g.airline_extensions_tabline_enabled = 1
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
-- theme = 'auto',
|
||||
theme = 'gruvbox',
|
||||
component_separators = { left = '', right = '' },
|
||||
section_separators = { left = '', right = '' },
|
||||
disabled_filetypes = {
|
||||
|
@ -20,10 +21,10 @@ require('lualine').setup {
|
|||
sections = {
|
||||
lualine_a = { 'mode' },
|
||||
lualine_b = { 'branch', 'diff', 'diagnostics' },
|
||||
lualine_c = { { 'filename', path = 1 } },
|
||||
lualine_x = { 'encoding', 'fileformat', 'filetype' },
|
||||
lualine_y = { 'progress' },
|
||||
lualine_z = { 'location' }
|
||||
lualine_c = { { 'filename', path = 1, file_status = true } },
|
||||
lualine_x = { 'encoding', 'fileformat', },
|
||||
lualine_y = { 'filetype' },
|
||||
lualine_z = {}
|
||||
},
|
||||
inactive_sections = {
|
||||
lualine_a = {},
|
||||
|
|
Loading…
Reference in New Issue