Update lualine

Signed-off-by: Ryan <ryan@alien.gov>
This commit is contained in:
Ryan 2023-11-30 15:21:17 +08:00
parent b1f6665d59
commit d39f6a98db
No known key found for this signature in database
GPG Key ID: DB5B3AC49EEFD2A5
3 changed files with 45 additions and 37 deletions

View File

@ -17,7 +17,6 @@ o.ignorecase = true
o.smartcase = true
o.smartindent = true
o.autoindent = true
o.mouse = "i"
-- leader settings
global.mapleader = ' '

View File

@ -151,9 +151,10 @@ local plugins = {
dependencies = { 'nvim-lua/plenary.nvim' },
event = "CmdlineEnter",
keys = {
vim.keymap.set('', '<leader>tf', ':Telescope fd<cr>'),
vim.keymap.set('', '<leader>t/', ':Telescope live_grep<cr>'),
vim.keymap.set('', '<leader>t/', ':Telescope lsp_dynamic_workspace_symbols<cr>'),
vim.keymap.set('', '<leader>tg', ':Telescope live_grep<cr>'),
vim.keymap.set('', '<leader>tb', ':Telescope buffers<cr>'),
vim.keymap.set('', '<leader>tf', ':Telescope fd<cr>'),
},
config = function()
require("plugins.telescope")

View File

@ -1,35 +1,43 @@
require'lualine'.setup {
options = {
icons_enabled = true,
theme = 'gruvbox',
component_separators = {'|', '|'},
section_separators = {'', ''},
disabled_filetypes = {}
},
sections = {
lualine_a = {'mode'},
lualine_b = {'branch'},
lualine_c = {'filename', 'diagonostics'},
lualine_x = {'encoding', 'fileformat', 'filetype'},
lualine_y = {'progress'},
lualine_z = {'location'}
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {'filename'},
lualine_x = {'location'},
lualine_y = {},
lualine_z = {}
},
-- Tabline is broken, disable for now.
-- tabline = {
-- lualine_a = {'buffers'},
-- lualine_b = {},
-- lualine_c = {},
-- lualine_x = {},
-- lualine_y = {},
-- lualine_z = {'tabs'}
-- },
extensions = {}
require 'lualine'.setup {
options = {
icons_enabled = true,
theme = 'gruvbox',
component_separators = { '|', '|' },
section_separators = { '', '' },
disabled_filetypes = {}
},
sections = {
lualine_a = { 'mode' },
lualine_b = {
'branch',
},
lualine_c = {
{
'filename',
path = 1
},
'diff',
},
lualine_x = { 'encoding', 'fileformat', 'filetype' },
lualine_y = { 'progress' },
lualine_z = { 'location' }
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = { 'filename' },
lualine_x = { 'location' },
lualine_y = {},
lualine_z = {}
},
-- Tabline is broken, disable for now.
-- tabline = {
-- lualine_a = {'buffers'},
-- lualine_b = {},
-- lualine_c = {},
-- lualine_x = {},
-- lualine_y = {},
-- lualine_z = {'tabs'}
-- },
extensions = {}
}