chore(config): use stylua with neoformat to format lua in neovim
parent
e00264a1b2
commit
6d1bcdff1a
|
@ -52,19 +52,19 @@ Plug 'fatih/vim-go'
|
|||
call plug#end()
|
||||
|
||||
lua << EOF
|
||||
local lualine = require('lualine')
|
||||
local catppuccin = require('catppuccin')
|
||||
local tree = require('nvim-tree')
|
||||
local lualine = require("lualine")
|
||||
local catppuccin = require("catppuccin")
|
||||
local tree = require("nvim-tree")
|
||||
|
||||
lualine.setup({
|
||||
options = {
|
||||
icons_enabled = false,
|
||||
-- theme = 'onedark',
|
||||
-- theme = 'github',
|
||||
theme = 'catppuccin',
|
||||
component_separators = { left = '', right = ''},
|
||||
section_separators = { left = '', right = ''},
|
||||
}
|
||||
theme = "catppuccin",
|
||||
component_separators = { left = "", right = "" },
|
||||
section_separators = { left = "", right = "" },
|
||||
},
|
||||
})
|
||||
|
||||
catppuccin.setup({
|
||||
|
|
Loading…
Reference in New Issue