Skip to content

Commit 2f5c80b

Browse files
committed
[feline.nvim] make statusline less distraction
1 parent 3489225 commit 2f5c80b

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

lua/plugins/feline_nvim.lua

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ components.active[1] = {
4848
name = "file_info",
4949
opts = { type = "relative" }
5050
},
51-
hl = {fg = 'black', bg = 'f_color', style = 'bold'},
51+
hl = {fg = 'black', bg = 'f_color', style = 'italic'},
5252
left_sep = {
5353
' ',
5454
'slant_left_2',
@@ -85,7 +85,7 @@ components.active[1] = {
8585
},
8686
{
8787
provider = 'git_branch',
88-
hl = {fg = 'f_color', bg = 'bg', style = 'bold'},
88+
hl = {fg = 'cyan2', bg = 'bg', style = 'bold'},
8989
right_sep = function()
9090
local val = {hl = {fg = 'NONE', bg = 'bg'}}
9191
if b.gitsigns_status_dict then
@@ -166,6 +166,7 @@ components.active[2] = {
166166
return msg
167167
end,
168168
-- hl = {style = 'italic'},
169+
hl = {fg='black'},
169170
left_sep = {' ', {str = ' ', hl = {fg = 'fg', bg = 'bg'}}},
170171
},
171172
-- {
@@ -180,7 +181,7 @@ components.active[3] = {
180181
{
181182
provider = '  %l:%-2c- %L ',
182183
left_sep = ' ',
183-
hl = {fg = 'black', bg = 'f_color', style = 'bold'},
184+
hl = {fg = 'black', bg = 'f_color'},
184185
},
185186
{
186187
-- provider = 'scroll_bar',
@@ -217,9 +218,10 @@ components.inactive[1] = {
217218
local colors = {
218219
fg = '#C8C8C8',
219220
bg = '#141414',
220-
black = "#000000",
221+
black = "#b7b7b7",
221222
black1 = '#1B1B1B',
222223
skyblue = '#50B0F0',
224+
cyan2 = '#006c6c',
223225
cyan = '#009090',
224226
green = '#60A040',
225227
oceanblue = '#0066cc',
@@ -228,7 +230,7 @@ local colors = {
228230
red = '#D10000',
229231
violet = '#9E93E8',
230232
white = '#FFFFFF',
231-
f_color = '#0f5b5e',
233+
f_color = '#072b2c',
232234
yellow = '#E1E120',
233235
}
234236

0 commit comments

Comments
 (0)