File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 68
68
69
69
vim .opt .pumblend = 10
70
70
vim .opt .laststatus = 0
71
+ vim .cmd ([[ set statusline=%{repeat('─',winwidth('.'))}]] )
71
72
vim .opt .showcmd = false
Original file line number Diff line number Diff line change 1
1
local DEFUALT_THEME = " dragon"
2
+ local TRANSPARENT = true
2
3
return {
3
4
" rebelot/kanagawa.nvim" ,
4
5
priority = vim .env .NVIM_COLORSCHEME == " kanagawa" and 1000 or 50 ,
@@ -17,8 +18,10 @@ return {
17
18
overrides = function (colors )
18
19
local theme = colors .theme
19
20
return {
20
- StatusLine = { bg = theme .ui .bg_p1 , fg = theme .ui .fg_dim },
21
- StatusLineNC = { bg = theme .ui .bg_p1 , fg = theme .ui .fg_dim },
21
+ -- StatusLine {{
22
+ StatusLine = { fg = theme .ui .fg_dim , bg = not TRANSPARENT and theme .ui .bg or " NONE" },
23
+ StatusLineNC = { fg = theme .ui .fg_dim , bg = not TRANSPARENT and theme .ui .bg or " NONE" },
24
+ -- }}
22
25
23
26
-- Telescope {{
24
27
TelescopeTitle = { fg = theme .ui .special , bold = true },
@@ -48,7 +51,7 @@ return {
48
51
}
49
52
end ,
50
53
globalStatus = true ,
51
- transparent = true ,
54
+ transparent = TRANSPARENT ,
52
55
theme = DEFUALT_THEME ,
53
56
}
54
57
end ,
You can’t perform that action at this time.
0 commit comments