feat: add tabline, filetree, autopairs
This commit is contained in:
parent
d891f4ac5a
commit
4b150dbc0d
7 changed files with 155 additions and 21 deletions
16
lua/custom/plugins/lualine.lua
Normal file
16
lua/custom/plugins/lualine.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
local custom_onedark = require 'lualine.themes.onedark_dark'
|
||||
custom_onedark.normal.c.bg = '#000000'
|
||||
|
||||
return {
|
||||
-- Set lualine as statusline
|
||||
'nvim-lualine/lualine.nvim',
|
||||
-- See `:help lualine.txt`
|
||||
opts = {
|
||||
options = {
|
||||
icons_enabled = true,
|
||||
theme = custom_onedark,
|
||||
section_separators = { left = '', right = '' },
|
||||
component_separators = { left = '', right = '' },
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue