aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--projects/flashnotes.vim18
-rw-r--r--projects/union-capital.vim5
-rw-r--r--vimrc3
4 files changed, 27 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index fefcc04..1c0f54c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,7 +8,7 @@
/backup/undo/**
# Custom
-/projects/
+/projects/file-paths.vim
# Defaults
!.gitkeep
diff --git a/projects/flashnotes.vim b/projects/flashnotes.vim
new file mode 100644
index 0000000..e3ac873
--- /dev/null
+++ b/projects/flashnotes.vim
@@ -0,0 +1,18 @@
+" Flashnotes
+augroup Flashnotes
+ autocmd!
+ autocmd BufRead,BufEnter $VIM_PROJECT_PATH_FLASHNOTES/*.{scss,js,html} setlocal expandtab tabstop=2 softtabstop=2 shiftwidth=2 textwidth=100
+
+ " Generate a new ctags file for Python sources. Use tmux to run the command in the background.
+ autocmd BufRead,BufEnter $VIM_PROJECT_PATH_FLASHNOTES/*.{py}
+ \ nnoremap <buffer> <leader>gc :silent! execute '!tmux new -d "ctags --languages=Python --python-kinds=-i --excmd=number -f $VIM_PROJECT_PATH_FLASHNOTES_ROOT/tags -R $VIM_PROJECT_PATH_FLASHNOTES/ $VIM_PROJECT_PATH_VIRTUALENVS"' \| redraw!<cr> |
+ \ setlocal tags+=tags; " Look for tags file and recurse up directories
+
+ " Generage a new ctags file for JavaScript sources
+ autocmd BufRead,BufEnter $VIM_PROJECT_PATH_FLASHNOTES/*.{js}
+ \ nnoremap <buffer> <leader>gc :silent! execute '!tmux new -d "ctags --options=$VIM_PROJECT_PATH_FLASHNOTES_ROOT/.ctags.conf --languages=js --excmd=number -f $VIM_PROJECT_PATH_FLASHNOTES_ROOT/jstags -R $VIM_PROJECT_PATH_FLASHNOTES/flashnotes/static/js"' \| redraw!<cr> |
+ \ setlocal tags+=jstags;
+
+ " We have so many files, Command-T's default of 30000 isn't enough!
+ autocmd BufRead,BufEnter $VIM_PROJECT_PATH_FLASHNOTES/* let g:CommandTMaxFiles=50000
+augroup END
diff --git a/projects/union-capital.vim b/projects/union-capital.vim
new file mode 100644
index 0000000..c385aed
--- /dev/null
+++ b/projects/union-capital.vim
@@ -0,0 +1,5 @@
+" Union Capital - Random Hacks of Kindness Hackathon
+augroup Union_Capital_RHoK
+ autocmd!
+ autocmd BufRead,BufEnter $VIM_PROJECT_PATH_UNION_CAPITAL/* setlocal expandtab tabstop=2 softtabstop=2 shiftwidth=2
+augroup END
diff --git a/vimrc b/vimrc
index f9dd6ad..ad81b4b 100644
--- a/vimrc
+++ b/vimrc
@@ -672,6 +672,9 @@ command! -nargs=* Wrap set wrap linebreak nolist
" Project Settings
" ================
+" Source environment variables set to project paths
+source ~/.vim/projects/file-paths.vim
+
" Source all files in the ~/.vim/projects directory
" http://stackoverflow.com/a/4500936
for f in split(glob('~/.vim/projects/*.vim'), '\n')