Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 14c1dc6

Browse files
committed
update
1 parent b58f32d commit 14c1dc6

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

lua/user/config/custom.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local theme = 'dracula-mini'
1+
local theme = 'flexoki'
22
local user_cfg = {
33
ui__theme_name = vim.g.vscode and 'default' or theme,
44
plug__enable_codeium_nvim = false,

lua/user/plugins/theme.lua

+13-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,22 @@ plug({
99
name = 'flexoki',
1010
event = 'User LazyTheme',
1111
config = function()
12-
-- local palette = require('flexoki.palette')
13-
-- local c = palette.palette()
12+
local palette = require('flexoki.palette')
13+
local c = palette.palette()
1414

1515
local hl = {}
1616
hl.CocMenuSel = { link = 'PmenuSel' }
17+
hl.WinbarPathTail = {
18+
fg = c['ora'],
19+
}
20+
hl.WinBar = {
21+
fg = c['ui_3'],
22+
bg = 'none',
23+
}
24+
hl.WinBarNC = {
25+
fg = c['ui_3'],
26+
bg = 'none',
27+
}
1728

1829
require('flexoki').setup({
1930
---Set the desired variant: 'auto' will follow the vim background,

lua/user/plugins/workflow.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ plug({
759759
keys = {
760760
{
761761
'<localleader>bb',
762-
':BufstopMode<cr>',
762+
':BufstopModeFast<cr>',
763763
desc = 'Open bufstop',
764764
},
765765
},

0 commit comments

Comments
 (0)