gtk theming and fold config
This commit is contained in:
parent
99459dcd49
commit
ecba887154
4 changed files with 39 additions and 8 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -4,7 +4,6 @@ cef_user_data
|
||||||
cmus
|
cmus
|
||||||
dconf
|
dconf
|
||||||
gnome-boxes
|
gnome-boxes
|
||||||
gtk-3.0
|
|
||||||
htop
|
htop
|
||||||
libfm
|
libfm
|
||||||
libreoffice
|
libreoffice
|
||||||
|
@ -19,7 +18,6 @@ kalgebrarc
|
||||||
kdenlive-layoutsrc
|
kdenlive-layoutsrc
|
||||||
kdenliverc
|
kdenliverc
|
||||||
qt5ct
|
qt5ct
|
||||||
gtk-2.0
|
|
||||||
mimeapps.list
|
mimeapps.list
|
||||||
nnn
|
nnn
|
||||||
xarchiver
|
xarchiver
|
||||||
|
@ -48,9 +46,6 @@ baloofileinformationrc
|
||||||
baloofilerc
|
baloofilerc
|
||||||
discoverrc
|
discoverrc
|
||||||
dolphinrc
|
dolphinrc
|
||||||
gtk-4.0
|
|
||||||
gtkrc
|
|
||||||
gtkrc-2.0
|
|
||||||
kactivitymanagerd-statsrc
|
kactivitymanagerd-statsrc
|
||||||
kactivitymanagerdrc
|
kactivitymanagerdrc
|
||||||
katemetainfos
|
katemetainfos
|
||||||
|
|
14
gtk-2.0/gtkrc-2.0
Normal file
14
gtk-2.0/gtkrc-2.0
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
gtk-theme-name="Materia-dark"
|
||||||
|
gtk-icon-theme-name="Adwaita"
|
||||||
|
gtk-font-name="JetBrains Mono 10"
|
||||||
|
gtk-cursor-theme-name="Adwaita"
|
||||||
|
gtk-cursor-theme-size=0
|
||||||
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||||
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||||
|
gtk-button-images=1
|
||||||
|
gtk-menu-images=1
|
||||||
|
gtk-enable-event-sounds=1
|
||||||
|
gtk-enable-input-feedback-sounds=1
|
||||||
|
gtk-xft-antialias=1
|
||||||
|
gtk-xft-hinting=1
|
||||||
|
gtk-xft-hintstyle="hintfull"
|
15
gtk-3.0/settings.ini
Normal file
15
gtk-3.0/settings.ini
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[Settings]
|
||||||
|
gtk-theme-name=Materia-dark
|
||||||
|
gtk-icon-theme-name=hicolor
|
||||||
|
gtk-font-name=JetBrains Mono 10
|
||||||
|
gtk-cursor-theme-name=breeze_cursors
|
||||||
|
gtk-cursor-theme-size=0
|
||||||
|
gtk-toolbar-style=GTK_TOOLBAR_BOTH
|
||||||
|
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||||
|
gtk-button-images=1
|
||||||
|
gtk-menu-images=1
|
||||||
|
gtk-enable-event-sounds=1
|
||||||
|
gtk-enable-input-feedback-sounds=1
|
||||||
|
gtk-xft-antialias=1
|
||||||
|
gtk-xft-hinting=1
|
||||||
|
gtk-xft-hintstyle=hintfull
|
|
@ -14,18 +14,25 @@ silent! normal! zE
|
||||||
22,35fold
|
22,35fold
|
||||||
36,41fold
|
36,41fold
|
||||||
42,44fold
|
42,44fold
|
||||||
|
57,57fold
|
||||||
53,57fold
|
53,57fold
|
||||||
67,69fold
|
67,69fold
|
||||||
78,80fold
|
78,80fold
|
||||||
81,83fold
|
81,83fold
|
||||||
84,90fold
|
84,90fold
|
||||||
let &fdl = &fdl
|
let &fdl = &fdl
|
||||||
let s:l = 88 - ((27 * winheight(0) + 18) / 37)
|
53
|
||||||
|
normal! zo
|
||||||
|
57
|
||||||
|
normal! zo
|
||||||
|
53
|
||||||
|
normal! zc
|
||||||
|
let s:l = 99 - ((52 * winheight(0) + 18) / 37)
|
||||||
if s:l < 1 | let s:l = 1 | endif
|
if s:l < 1 | let s:l = 1 | endif
|
||||||
keepjumps exe s:l
|
keepjumps exe s:l
|
||||||
normal! zt
|
normal! zt
|
||||||
keepjumps 88
|
keepjumps 99
|
||||||
normal! 01|
|
normal! 0
|
||||||
let &g:so = s:so_save | let &g:siso = s:siso_save
|
let &g:so = s:so_save | let &g:siso = s:siso_save
|
||||||
set hlsearch
|
set hlsearch
|
||||||
doautoall SessionLoadPost
|
doautoall SessionLoadPost
|
||||||
|
|
Loading…
Reference in a new issue