added gtk.css install and removed ctrl+p from vim

This commit is contained in:
Eric D. Rohler 2019-04-27 11:36:22 -04:00
parent f90f0be8dd
commit 2f8d1b3309
3 changed files with 33 additions and 2 deletions

30
gtk.css Normal file
View File

@ -0,0 +1,30 @@
window.ssd separator:first-child + headerbar:backdrop,
window.ssd separator:first-child + headerbar,
window.ssd headerbar:first-child:backdrop,
window.ssd headerbar:first-child,
window.ssd headerbar:last-child:backdrop,
window.ssd headerbar:last-child,
window.ssd stack headerbar:first-child:backdrop,
window.ssd stack headerbar:first-child,
window.ssd stack headerbar:last-child:backdrop,
window.ssd stack headerbar:last-child,
window.ssd decoration,
window.ssd headerbar.titlebar {
border-radius: 0;
}
window.ssd headerbar * {
margin-top: -100px;
color: #1c2022; /* May need to tweak, this matches Adwaita Dark */
}
window.ssd headerbar.titlebar,
window.ssd headerbar.titlebar button.titlebutton {
border: none;
font-size: 0;
height: 0;
margin: 0;
max-height: 0;
min-height: 0;
padding: 0;
}

View File

@ -1,8 +1,9 @@
#!/usr/bin/bash
for f in $(ls --ignore="*.sh" --ignore="*.md")
for f in $(ls --ignore="*.sh" --ignore="*.md" --ignore="*.css")
do
# echo $f
ln -s "$(pwd)/$f" "$HOME/.${f##*/}"
done
ln -s "$(pwd)/gtk.css" "$HOME/.config/gtk-3.0/gtk.css"

2
vimrc
View File

@ -79,7 +79,7 @@ Plug 'vim-syntastic/syntastic'
" Editor Utils
Plug 'tpope/vim-surround'
Plug 'ctrlpvim/ctrlp.vim'
" Plug 'ctrlpvim/ctrlp.vim'
Plug 'mattn/emmet-vim'
Plug 'nathanaelkane/vim-indent-guides'