better lua line and not insert on vim

This commit is contained in:
talksik
2023-10-29 13:59:05 -07:00
parent 90776b42ea
commit 63228ce453
2 changed files with 32 additions and 10 deletions
+22 -4
View File
@@ -1,13 +1,31 @@
require('lualine').setup {
options = {
icons_enabled = true,
theme = 'codedark',
theme = 'material',
},
sections = {
lualine_a = {
{ 'filename',
path = 3,
}
{
'mode',
},
},
lualine_b = {
{
'filename',
-- path = 3,
},
},
lualine_c = {
{
'diff'
},
},
-- lualine_x = {
-- },
-- lualine_y = {
-- },
lualine_z = {
'filesize'
}
}
}
+5 -1
View File
@@ -32,5 +32,9 @@ vim.leader = " "
-- case insensitive searching UNLESS /C or capital in searching
vim.opt.ignorecase = true
vim.opt.wrap = true
vim.opt.wrap = false
-- don't change cursor on insert mode
vim.opt.guicursor = ""