feat: convert to blink, major lsp changes, lualine
This commit is contained in:
parent
82102e5e29
commit
51ab444c0d
44 changed files with 1387 additions and 700 deletions
94
lua/plugins/lualine.lua
Normal file
94
lua/plugins/lualine.lua
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
return {
|
||||
{
|
||||
'nvim-lualine/lualine.nvim',
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
local mode_map = {
|
||||
['NORMAL'] = 'N',
|
||||
['O-PENDING'] = 'N?',
|
||||
['INSERT'] = 'I',
|
||||
['VISUAL'] = 'V',
|
||||
['V-BLOCK'] = 'VB',
|
||||
['V-LINE'] = 'VL',
|
||||
['V-REPLACE'] = 'VR',
|
||||
['REPLACE'] = 'R',
|
||||
['COMMAND'] = '!',
|
||||
['SHELL'] = 'SH',
|
||||
['TERMINAL'] = 'T',
|
||||
['EX'] = 'X',
|
||||
['S-BLOCK'] = 'SB',
|
||||
['S-LINE'] = 'SL',
|
||||
['SELECT'] = 'S',
|
||||
['CONFIRM'] = 'Y?',
|
||||
['MORE'] = 'M',
|
||||
}
|
||||
require('lualine').setup {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = 'auto',
|
||||
component_separators = { left = '', right = '' },
|
||||
section_separators = { left = '', right = '' },
|
||||
disabled_filetypes = {
|
||||
statusline = {},
|
||||
winbar = {},
|
||||
},
|
||||
ignore_focus = {},
|
||||
always_divide_middle = true,
|
||||
always_show_tabline = true,
|
||||
globalstatus = false,
|
||||
refresh = {
|
||||
statusline = 100,
|
||||
tabline = 100,
|
||||
winbar = 100,
|
||||
},
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { {
|
||||
'mode',
|
||||
fmt = function(s)
|
||||
return mode_map[s] or s
|
||||
end,
|
||||
} },
|
||||
lualine_b = { 'branch', 'diff', 'diagnostics' },
|
||||
lualine_c = { 'filename' },
|
||||
lualine_x = {
|
||||
'encoding',
|
||||
'fileformat',
|
||||
'filetype',
|
||||
{
|
||||
'tabnine',
|
||||
fmt = function(s)
|
||||
if string.match(s, 'disabled') or s == '' then
|
||||
return '-'
|
||||
else
|
||||
return '⌬'
|
||||
end
|
||||
end,
|
||||
},
|
||||
{
|
||||
function()
|
||||
return vim.g.format_on_save_enabled and '' or ''
|
||||
end,
|
||||
color = { fg = '#98c379' },
|
||||
},
|
||||
},
|
||||
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 = {},
|
||||
-- '' or ''
|
||||
}
|
||||
end,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue