├── .bash ├── aliases └── prompt ├── .bash_logout ├── .bash_profile ├── .bash_sessions_disable ├── .bashrc ├── .dircolors ├── .gitconfig ├── .gitignore_global ├── .gitmodules ├── .hushlogin ├── .inputrc ├── .tmux.conf ├── .vim ├── after │ └── ftplugin │ │ └── html.vim ├── autoload │ └── pathogen.vim ├── indent │ ├── html.vim │ └── javascript.vim └── syntax │ └── html.vim ├── .vimrc ├── README.md ├── bootstrap.sh └── osx.sh /.bash/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.bash/aliases -------------------------------------------------------------------------------- /.bash/prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.bash/prompt -------------------------------------------------------------------------------- /.bash_logout: -------------------------------------------------------------------------------- 1 | clear 2 | -------------------------------------------------------------------------------- /.bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.bash_profile -------------------------------------------------------------------------------- /.bash_sessions_disable: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.bashrc -------------------------------------------------------------------------------- /.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.dircolors -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.gitignore_global -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.gitmodules -------------------------------------------------------------------------------- /.hushlogin: -------------------------------------------------------------------------------- 1 | # be quiet when loggin in 2 | -------------------------------------------------------------------------------- /.inputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.inputrc -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.vim/after/ftplugin/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vim/after/ftplugin/html.vim -------------------------------------------------------------------------------- /.vim/autoload/pathogen.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vim/autoload/pathogen.vim -------------------------------------------------------------------------------- /.vim/indent/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vim/indent/html.vim -------------------------------------------------------------------------------- /.vim/indent/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vim/indent/javascript.vim -------------------------------------------------------------------------------- /.vim/syntax/html.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vim/syntax/html.vim -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/.vimrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matijs/dotfiles-archived/HEAD/osx.sh --------------------------------------------------------------------------------