diff --git a/.antigen b/.antigen new file mode 160000 index 0000000..7860ce7 --- /dev/null +++ b/.antigen @@ -0,0 +1 @@ +Subproject commit 7860ce7aecdbed8fd8ff75472ac59c52c2ac9a7e diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..17ba4bd --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule ".tpm"] + path = .tpm + url = https://github.com/tmux-plugins/tpm +[submodule ".antigen"] + path = .antigen + url = https://github.com/zsh-users/antigen.git diff --git a/.tpm b/.tpm new file mode 160000 index 0000000..aa09a56 --- /dev/null +++ b/.tpm @@ -0,0 +1 @@ +Subproject commit aa09a56f4bf24eb06fd06257b9b62645d37bf943 diff --git a/gitconfig b/git/gitconfig similarity index 74% rename from gitconfig rename to git/gitconfig index 160f2d6..d164d70 100644 --- a/gitconfig +++ b/git/gitconfig @@ -21,3 +21,7 @@ [push] default = simple +[filter "lfs"] + clean = git-lfs clean %f + smudge = git-lfs smudge %f + required = true diff --git a/tmux/tmux-client-38556.log b/tmux/tmux-client-38556.log new file mode 100644 index 0000000..663c677 --- /dev/null +++ b/tmux/tmux-client-38556.log @@ -0,0 +1,2 @@ +got 207 from server +got 204 from server diff --git a/tmux/tmux.conf b/tmux/tmux.conf new file mode 100644 index 0000000..2d59356 --- /dev/null +++ b/tmux/tmux.conf @@ -0,0 +1,13 @@ +# List of plugins +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' + +# Other examples: +# set -g @plugin 'github_username/plugin_name' +# set -g @plugin 'git@github.com/user/plugin' +# set -g @plugin 'git@bitbucket.com/user/plugin' +set -g @plugin 'seebi/tmux-colors-solarized' +set -g @colors-solarized 'dark' + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run '~/Code/joshtronic/dotfiles/.tpm/tpm' diff --git a/vim/vimrc b/vim/vimrc index 1162887..548c5af 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -23,7 +23,7 @@ set ignorecase set incsearch set laststatus=2 set list -set listchars=nbsp:¬,eol:↳,tab:└─,extends:»,precedes:«,trail:• +set listchars=tab:└─,trail:• set magic set mat=2 set nocindent @@ -66,6 +66,7 @@ call vundle#rc() Bundle 'gmarik/vundle' Bundle 'AfterColors.vim' +Bundle 'altercation/vim-colors-solarized' Bundle 'bling/vim-airline' Bundle 'bling/vim-bufferline' Bundle 'cakebaker/scss-syntax.vim' @@ -80,7 +81,6 @@ Bundle 'hail2u/vim-css3-syntax' "Bundle 'majutsushi/tagbar' "Bundle 'MarcWeber/vim-addon-mw-utils' Bundle 'mustache/vim-mustache-handlebars' -Bundle 'nanotech/jellybeans.vim' "Bundle 'nathanaelkane/vim-indent-guides' "Bundle 'nginx.vim' "Bundle 'othree/html5.vim' @@ -91,7 +91,9 @@ Bundle 'scrooloose/syntastic' Bundle 'shawncplus/phpcomplete.vim' "Bundle 'SearchComplete' -colorscheme jellybeans +syntax enable +set background=dark +colorscheme solarized autocmd BufEnter * match ExtraWhitespace /\s\+$/ autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@