diff options
author | David Runge <dave@sleepmap.de> | 2019-02-17 17:33:51 +0100 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2019-02-17 17:33:51 +0100 |
commit | 26c2a58eec97c7d80e3220399b82e98fe2d90a03 (patch) | |
tree | 65f7f3acdbc984b67716c6df97775acead67469c | |
parent | 009247a0432864855c439b1247bac87af3e29158 (diff) | |
parent | 55cfa538fccf2c99900e29763b6695ac700c974c (diff) | |
download | dotfiles-26c2a58eec97c7d80e3220399b82e98fe2d90a03.tar.gz dotfiles-26c2a58eec97c7d80e3220399b82e98fe2d90a03.tar.bz2 dotfiles-26c2a58eec97c7d80e3220399b82e98fe2d90a03.tar.xz dotfiles-26c2a58eec97c7d80e3220399b82e98fe2d90a03.zip |
Merge branch 'master' of sleepmap.de:config/dotfiles
* 'master' of sleepmap.de:config/dotfiles:
.gitignore: Adding .local/{bin,lib,share/virtualenvs}, .puppetlabs, .pyenv, .qutebrowser, .ssh/socket*, .vagrant*, .virtualenvs.
.gitignore: Adding ~/.vim/untracked-settings.vim.
.vimrc: Adding ~/.vim/untracked-settings.vim as a place to drop sensitive data needed for some plugins.
.vim/addons.vim: Adding vim-jenkins.
-rw-r--r-- | .gitignore | 10 | ||||
-rw-r--r-- | .vim/addons.vim | 1 | ||||
-rw-r--r-- | .vimrc | 5 |
3 files changed, 16 insertions, 0 deletions
@@ -244,6 +244,8 @@ packages/ .lives .lives-dir/ .log +.local/bin +.local/lib .local/share/.converted-launchers .local/share/Psychonauts/ .local/share/Steam/ @@ -271,6 +273,7 @@ packages/ .local/share/systemd/ .local/share/Trash/ .local/share/telepathy/ +.local/share/virtualenvs .local/share/vlc/ .local/share/webkit/ .local/share/desktop-directoriey.log/ @@ -317,11 +320,14 @@ packages/ .pryrc .pulse .pulse-cookie +.puppetlabs .purple/ +.pyenv .python-eggs/ .q3a .qucs .qt +.qutebrowser .rdebugrc .recently-used .revenge_of_the_titans/ @@ -341,6 +347,7 @@ packages/ .ssh/authorized_keys .ssh/id_* .ssh/known_hosts +.ssh/socket* .steam/ .steampath .steampid @@ -360,16 +367,19 @@ packages/ .tuxguitar-1.2/ .unescaped_colors.rb .unknown-horizons/ +.vagrant* .vdirsyncer/status .vim/backups/ .vim/sessions/ .vim/vim-addons/ .vim/.* .vim/yankring* +.vim/untracked-settings.vim .vimperator/ .vimpressrc .viminfo .viminfo.tmp +.virtualenvs .vm/ .vmoviedb/ .weather/ diff --git a/.vim/addons.vim b/.vim/addons.vim index c8302be..a7550e4 100644 --- a/.vim/addons.vim +++ b/.vim/addons.vim @@ -20,6 +20,7 @@ VAMActivate github:Matt-Stevens/vim-systemd-syntax VAMActivate github:sjas/octave.vim VAMActivate github:wannesm/wmgraphviz.vim.git VAMActivate github:supercollider/scvim.git +VAMActivate github:burnettk/vim-jenkins " project VAMActivate github:scrooloose/nerdtree.git VAMActivate github:scrooloose/nerdcommenter.git @@ -126,6 +126,11 @@ so ~/.vim/addons-settings.vim " addon settings so ~/.vim/custom-settings.vim " custom settings so ~/.vim/custom-functions.vim " custom functions +" custom, untracked settings +if filereadable(expand("~/.vim/untracked-settings.vim")) + so ~/.vim/untracked-settings.vim +endif + " colors colorscheme pablo |