From aa43b8334aea182a442f6a88854065ec9a1f3c24 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 27 Jul 2015 00:11:11 -0400 Subject: Track project-specific config files * Remove project files from the ignore list * Add project config files as they are now * Create a new untracked file to keep track of project directory paths The reason why I never tracked project files in the repo was because I didn't want my file paths to be shared publicly. But over time I've been making changes to my `flashnotes.vim` config and wanted to be able to track those changes, especially the `ctags` ones. Now, I'm able to track those config files and still hide my file paths from public view using a set of environment variables defined in `.vim/projects/file-paths.vim`. --- projects/flashnotes.vim | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 projects/flashnotes.vim (limited to 'projects/flashnotes.vim') 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 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! | + \ 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 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! | + \ 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 -- cgit v1.2.3