Skip to content

Commit 7065dbc

Browse files
committed
update
1 parent 5296a44 commit 7065dbc

4 files changed

Lines changed: 57 additions & 5 deletions

File tree

nvim/lua/plugins/configs/trouble.lua

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ if not _plugin then
44
end
55

66
plugin.setup({
7-
auto_open = false,
8-
auto_close = true,
9-
auto_preview = false,
107
mode = 'document_diagnostics',
8+
modes = {
9+
diagnostics = {
10+
auto_open = true,
11+
auto_close = true,
12+
auto_preview = true,
13+
},
14+
},
1115
})

shell/zshrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,5 @@ setopt HIST_IGNORE_SPACE
206206
if is_wsl; then
207207
unset XDG_RUNTIME_DIR
208208
fi
209+
210+
export PATH=$PATH:/home/lee/.spicetify

terminals/ghostty

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
background-opacity=0.75
1+
#background-opacity=0.75
2+
background-opacity=0.9
23
maximize=true
34
window-decoration=none
4-
theme=tokyonight-storm
5+
6+
gtk-custom-css = ~/.dotfiles/terminals/ghostty.css
7+
gtk-wide-tabs = false
8+
gtk-tabs-location = top
9+
theme=TokyoNight Storm
10+
511
keybind = ctrl+alt+shift+up=resize_split:up,10
612
keybind = ctrl+alt+shift+left=resize_split:left,10
713
keybind = ctrl+alt+shift+down=resize_split:down,10

terminals/ghostty.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/**
2+
* debug: env GTK_DEBUG=interactive ghostty
3+
* https://docs.gtk.org/gtk4/css-overview.html
4+
* https://docs.gtk.org/gtk4/css-properties.html
5+
*/
6+
7+
headerbar {
8+
/* min-height: 24px; */
9+
padding: 0;
10+
margin: 0;
11+
}
12+
13+
tabbar tabbox {
14+
margin: 0;
15+
padding: 0;
16+
/* min-height: 10px; */
17+
/* background-color: #1a1a1a; */
18+
font-family: monospace;
19+
}
20+
21+
tabbar tabbox tabboxchild {
22+
border-radius: 0;
23+
}
24+
25+
tabbar tabbox tab {
26+
margin: 0;
27+
padding: 0;
28+
/* color: #9ca3af; */
29+
/* border-right: 1px solid #374151; */
30+
border-radius: 0;
31+
}
32+
33+
tabbar tabbox tab:selected {
34+
/* background-color: #2d2d2d; */
35+
/* color: #ffffff; */
36+
}
37+
38+
tabbar tabbox tab label {
39+
/* font-size: 13px; */
40+
}

0 commit comments

Comments
 (0)