mirror of
https://github.com/cap153/nvim.git
synced 2026-01-08 04:07:35 +08:00
适配neovim 0.11
1. 更改使用的主题 2. 更改底部状态栏样式 3. 更换彩虹括号插件适配neovim 0.11 4. 更换彩虹缩进样式 5. 添加lock文件
This commit is contained in:
parent
1a430bf24b
commit
38bedd3beb
17 changed files with 259 additions and 425 deletions
25
lua/lazy/plugins/bottombar.lua
Normal file
25
lua/lazy/plugins/bottombar.lua
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
-- ===
|
||||
-- === 底部状态栏
|
||||
-- ===
|
||||
return {
|
||||
"nvim-lualine/lualine.nvim",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
opts = {
|
||||
options = {
|
||||
theme = "catppuccin",
|
||||
always_divide_middle = false,
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
},
|
||||
sections = {
|
||||
lualine_a = { "mode" },
|
||||
lualine_b = { "branch", "diff", "diagnostics" },
|
||||
lualine_c = { "lsp_status" },
|
||||
lualine_x = {},
|
||||
lualine_y = { "encoding", "fileformat", "progress" },
|
||||
lualine_z = { "location" },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue