Skip to content

celestian/dot-files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dot-files

.files

Terminal

https://github.com/Anthony25/gnome-terminal-colors-solarized

Alacritty

sudo dnf copr -y enable mschuwalow/alacritty sudo dnf -y install alacritty

Awesome wm

https://github.com/lcpz/awesome-copycats

emacs

systemctl --user enable emacs.service
systemctl --user start emacs.service

git clone https://github.com/syl20bnr/spacemacs ~/.emacs.d
sudo dnf install emacs

vim

$ curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh $ sh ./install.sh

$ cd ~/.vim/bundle $ git clone git://github.com/altercation/vim-colors-solarized.git

$ cd ~/.vim/bundle/YouCompleteMe $ ./install.sh --clang-completer

git

git config --add alias.pr '!f() { git fetch -fu ${2:-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f'

git config --add alias.pr-clean '!git checkout master ; git for-each-ref refs/heads/pr/* --format="%(refname)" | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done'