nvim: plugins: Drop nvim-web-devicons
This commit is contained in:
parent
47e8843882
commit
7a9333a9e1
2 changed files with 1 additions and 43 deletions
|
@ -51,7 +51,6 @@ end
|
||||||
|
|
||||||
local config = {
|
local config = {
|
||||||
options = {
|
options = {
|
||||||
icons_enabled = true,
|
|
||||||
component_separators = '',
|
component_separators = '',
|
||||||
section_separators = '',
|
section_separators = '',
|
||||||
theme = {
|
theme = {
|
||||||
|
@ -61,7 +60,7 @@ local config = {
|
||||||
},
|
},
|
||||||
sections = {
|
sections = {
|
||||||
-- these are to remove the defaults
|
-- these are to remove the defaults
|
||||||
lualine_a = {},
|
lualine_a = { window },
|
||||||
lualine_b = {},
|
lualine_b = {},
|
||||||
lualine_y = {},
|
lualine_y = {},
|
||||||
lualine_z = {},
|
lualine_z = {},
|
||||||
|
@ -89,45 +88,6 @@ local function ins_right(component)
|
||||||
table.insert(config.sections.lualine_x, component)
|
table.insert(config.sections.lualine_x, component)
|
||||||
end
|
end
|
||||||
|
|
||||||
ins_left {
|
|
||||||
function()
|
|
||||||
return ' '
|
|
||||||
end,
|
|
||||||
color = { fg = colors.blue },
|
|
||||||
padding = { left = 0, right = 1 },
|
|
||||||
}
|
|
||||||
|
|
||||||
ins_left {
|
|
||||||
function()
|
|
||||||
local mode_color = {
|
|
||||||
n = colors.red,
|
|
||||||
i = colors.green,
|
|
||||||
v = colors.blue,
|
|
||||||
[''] = colors.blue,
|
|
||||||
V = colors.blue,
|
|
||||||
c = colors.magenta,
|
|
||||||
no = colors.red,
|
|
||||||
s = colors.orange,
|
|
||||||
S = colors.orange,
|
|
||||||
[''] = colors.orange,
|
|
||||||
ic = colors.yellow,
|
|
||||||
R = colors.purple,
|
|
||||||
Rv = colors.purple,
|
|
||||||
cv = colors.red,
|
|
||||||
ce = colors.red,
|
|
||||||
r = colors.cyan,
|
|
||||||
rm = colors.cyan,
|
|
||||||
['r?'] = colors.cyan,
|
|
||||||
['!'] = colors.red,
|
|
||||||
t = colors.red,
|
|
||||||
}
|
|
||||||
vim.api.nvim_command('hi! LualineMode guifg=' .. mode_color[vim.fn.mode()] .. ' guibg=' .. colors.bg)
|
|
||||||
return ''
|
|
||||||
end,
|
|
||||||
color = 'LualineMode',
|
|
||||||
padding = { right = 1 },
|
|
||||||
}
|
|
||||||
|
|
||||||
ins_left {
|
ins_left {
|
||||||
'filename',
|
'filename',
|
||||||
cond = conditions.buffer_not_empty,
|
cond = conditions.buffer_not_empty,
|
||||||
|
@ -137,7 +97,6 @@ ins_left {
|
||||||
ins_left {
|
ins_left {
|
||||||
'FugitiveHead',
|
'FugitiveHead',
|
||||||
cond = conditions.check_git_workspace,
|
cond = conditions.check_git_workspace,
|
||||||
icon = ' ',
|
|
||||||
color = { fg = colors.orange, gui = 'bold' },
|
color = { fg = colors.orange, gui = 'bold' },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -125,7 +125,6 @@ local init = function ()
|
||||||
use {
|
use {
|
||||||
'nvim-lualine/lualine.nvim',
|
'nvim-lualine/lualine.nvim',
|
||||||
requires = {
|
requires = {
|
||||||
'kyazdani42/nvim-web-devicons',
|
|
||||||
'arkav/lualine-lsp-progress'
|
'arkav/lualine-lsp-progress'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue