├── .config ├── htop │ └── htoprc ├── nvim │ ├── init.lua │ └── lua │ │ ├── config │ │ └── lazy.lua │ │ └── plugins.lua ├── powerline │ ├── colors.json │ ├── colorschemes │ │ ├── ipython │ │ │ └── default.json │ │ ├── shell │ │ │ ├── default.json │ │ │ └── solarized.json │ │ ├── tmux │ │ │ └── default.json │ │ ├── vim │ │ │ ├── default.json │ │ │ └── solarized.json │ │ └── wm │ │ │ └── default.json │ ├── config.json │ └── themes │ │ ├── ipython │ │ ├── in.json │ │ ├── in2.json │ │ ├── out.json │ │ └── rewrite.json │ │ ├── shell │ │ ├── default.json │ │ └── default_leftonly.json │ │ ├── tmux │ │ └── default.json │ │ ├── vim │ │ ├── cmdwin.json │ │ ├── default.json │ │ ├── help.json │ │ ├── plugin │ │ │ ├── ctrlp.json │ │ │ ├── gundo-preview.json │ │ │ ├── gundo.json │ │ │ └── nerdtree.json │ │ └── quickfix.json │ │ └── wm │ │ └── default.json ├── stetic │ └── library-cache │ │ ├── 072fde1d-9f9c-4f53-85be-769313a6024b │ │ └── objects │ │ └── index.xml └── xbuild │ └── pkgconfig-cache-2.xml ├── .gitconfig ├── .githelpers ├── .gitignore ├── .gitmodules ├── .tmux.conf ├── .vimrc ├── .zshenv ├── .zshrc └── Makefile /.config/htop/htoprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/htop/htoprc -------------------------------------------------------------------------------- /.config/nvim/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/nvim/init.lua -------------------------------------------------------------------------------- /.config/nvim/lua/config/lazy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/nvim/lua/config/lazy.lua -------------------------------------------------------------------------------- /.config/nvim/lua/plugins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/nvim/lua/plugins.lua -------------------------------------------------------------------------------- /.config/powerline/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colors.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/ipython/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/ipython/default.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/shell/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/shell/default.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/shell/solarized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/shell/solarized.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/tmux/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/tmux/default.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/vim/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/vim/default.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/vim/solarized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/vim/solarized.json -------------------------------------------------------------------------------- /.config/powerline/colorschemes/wm/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/colorschemes/wm/default.json -------------------------------------------------------------------------------- /.config/powerline/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/config.json -------------------------------------------------------------------------------- /.config/powerline/themes/ipython/in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/ipython/in.json -------------------------------------------------------------------------------- /.config/powerline/themes/ipython/in2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/ipython/in2.json -------------------------------------------------------------------------------- /.config/powerline/themes/ipython/out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/ipython/out.json -------------------------------------------------------------------------------- /.config/powerline/themes/ipython/rewrite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/ipython/rewrite.json -------------------------------------------------------------------------------- /.config/powerline/themes/shell/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/shell/default.json -------------------------------------------------------------------------------- /.config/powerline/themes/shell/default_leftonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/shell/default_leftonly.json -------------------------------------------------------------------------------- /.config/powerline/themes/tmux/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/tmux/default.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/cmdwin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/cmdwin.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/default.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/help.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/plugin/ctrlp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/plugin/ctrlp.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/plugin/gundo-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/plugin/gundo-preview.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/plugin/gundo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/plugin/gundo.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/plugin/nerdtree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/plugin/nerdtree.json -------------------------------------------------------------------------------- /.config/powerline/themes/vim/quickfix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/vim/quickfix.json -------------------------------------------------------------------------------- /.config/powerline/themes/wm/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/powerline/themes/wm/default.json -------------------------------------------------------------------------------- /.config/stetic/library-cache/072fde1d-9f9c-4f53-85be-769313a6024b/objects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/stetic/library-cache/072fde1d-9f9c-4f53-85be-769313a6024b/objects -------------------------------------------------------------------------------- /.config/stetic/library-cache/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/stetic/library-cache/index.xml -------------------------------------------------------------------------------- /.config/xbuild/pkgconfig-cache-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.config/xbuild/pkgconfig-cache-2.xml -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.gitconfig -------------------------------------------------------------------------------- /.githelpers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.githelpers -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.gitmodules -------------------------------------------------------------------------------- /.tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.tmux.conf -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.vimrc -------------------------------------------------------------------------------- /.zshenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.zshenv -------------------------------------------------------------------------------- /.zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/.zshrc -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougblack/dotfiles/HEAD/Makefile --------------------------------------------------------------------------------