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)'),
|
socket_name = vim.api.nvim_eval('get(split($TMUX, ","), 0)'),
|
||||||
target_pane = "{bottom}",
|
target_pane = "{bottom}",
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Airline
|
|
||||||
vim.g.airline_powerline_fonts = 1
|
|
||||||
vim.g.airline_extensions_tabline_enabled = 1
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
require('lualine').setup {
|
require('lualine').setup {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
icons_enabled = true,
|
||||||
theme = 'auto',
|
-- theme = 'auto',
|
||||||
|
theme = 'gruvbox',
|
||||||
component_separators = { left = '', right = '' },
|
component_separators = { left = '', right = '' },
|
||||||
section_separators = { left = '', right = '' },
|
section_separators = { left = '', right = '' },
|
||||||
disabled_filetypes = {
|
disabled_filetypes = {
|
||||||
|
@ -20,10 +21,10 @@ require('lualine').setup {
|
||||||
sections = {
|
sections = {
|
||||||
lualine_a = { 'mode' },
|
lualine_a = { 'mode' },
|
||||||
lualine_b = { 'branch', 'diff', 'diagnostics' },
|
lualine_b = { 'branch', 'diff', 'diagnostics' },
|
||||||
lualine_c = { { 'filename', path = 1 } },
|
lualine_c = { { 'filename', path = 1, file_status = true } },
|
||||||
lualine_x = { 'encoding', 'fileformat', 'filetype' },
|
lualine_x = { 'encoding', 'fileformat', },
|
||||||
lualine_y = { 'progress' },
|
lualine_y = { 'filetype' },
|
||||||
lualine_z = { 'location' }
|
lualine_z = {}
|
||||||
},
|
},
|
||||||
inactive_sections = {
|
inactive_sections = {
|
||||||
lualine_a = {},
|
lualine_a = {},
|
||||||
|
|
Loading…
Reference in New Issue