From d3eac2e31e44e11f0298410799e50b5632f06eaa Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Fri, 10 Jun 2016 14:31:47 -0600 Subject: Missing a slash that turned off pretty much every option. --- plugin/vim-options.vim | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'plugin') diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index 3723cc6..7f45546 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -156,7 +156,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Emmet Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/emmet-vim/plugin/emmet.vim')) +if !empty(glob(EditorDir.'/plugged/emmet-vim/plugin/emmet.vim')) let g:use_emmet_complete_tag = 1 endif "----------------------------------------------------------------------------------------------------------------------- @@ -166,7 +166,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Indent Lines Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-indent-guides/plugin/indent_guides.vim')) +if !empty(glob(EditorDir.'/plugged/vim-indent-guides/plugin/indent_guides.vim')) let g:indent_guides_enable_on_vim_startup = 1 let g:indent_guides_auto_colors = 0 let g:indent_guides_exclude_filetypes =['help', 'nerdtree'] @@ -182,7 +182,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Vdebug Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vdebug/plugin/vdebug.vim')) +if !empty(glob(EditorDir.'/plugged/vdebug/plugin/vdebug.vim')) let g:vdebug_options = { \ "watch_window_style" : 'compact', \ "port" : 9000, @@ -202,7 +202,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Unite Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/unite.vim/plugin/unite.vim')) +if !empty(glob(EditorDir.'/plugged/unite.vim/plugin/unite.vim')) let g:unite_enable_start_insert = 1 let g:unite_split_rule = "botright" let g:unite_force_overwrite_statusline = 0 @@ -241,7 +241,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " SuperTab Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/supertab/plugin/supertab.vim')) +if !empty(glob(EditorDir.'/plugged/supertab/plugin/supertab.vim')) let g:SuperTabMappingForward = '' let g:SuperTabMappingBackward = '' let g:SuperTabLongestHighlight = 0 @@ -254,7 +254,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Ultisnips "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/ultisnips/plugin/UltiSnips.vim')) +if !empty(glob(EditorDir.'/plugged/ultisnips/plugin/UltiSnips.vim')) let g:UltiSnipsEditSplit="vertical" let g:UltiSnipsListSnippets="" let g:UltiSnipsExpandTrigger="" @@ -269,7 +269,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Fugitive "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-fugitive/plugin/fugitive.vim')) +if !empty(glob(EditorDir.'/plugged/vim-fugitive/plugin/fugitive.vim')) nnoremap gc :Gcommit --verbose nnoremap gd :Gdiff nnoremap gl :Glog @@ -297,7 +297,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Python-Syntax "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/python-syntax/syntax/python.vim')) +if !empty(glob(EditorDir.'/plugged/python-syntax/syntax/python.vim')) let python_highlight_all = 1 endif "----------------------------------------------------------------------------------------------------------------------- @@ -307,7 +307,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " CtrlP Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/ctrlp.vim/plugin/ctrlp.vim')) +if !empty(glob(EditorDir.'/plugged/ctrlp.vim/plugin/ctrlp.vim')) let g:ctrlp_working_path_mode = 'a' let g:ctrlp_by_filename = 1 let g:ctrlp_status_func = { @@ -342,7 +342,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Flake8 Plugin "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-flake8/autoload/flake8.vim')) +if !empty(glob(EditorDir.'/plugged/vim-flake8/autoload/flake8.vim')) autocmd FileType python map :call Flake8() let g:flake8_show_in_gutter=1 autocmd BufWritePost *.py call Flake8() @@ -354,7 +354,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Markdown "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-markdown/indent/markdown.vim')) +if !empty(glob(EditorDir.'/plugged/vim-markdown/indent/markdown.vim')) let g:vim_markdown_folding_disabled=1 endif "----------------------------------------------------------------------------------------------------------------------- @@ -364,7 +364,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Dev-icons "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-devicons/plugin/webdevicons.vim')) +if !empty(glob(EditorDir.'/plugged/vim-devicons/plugin/webdevicons.vim')) let g:webdevicons_enable_nerdtree = 1 let g:webdevicons_enable = 1 let g:WebDevIconsNerdTreeGitPluginForceVAlign = 1 @@ -378,7 +378,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Dash "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/dash.vim/plugin/dash.vim')) +if !empty(glob(EditorDir.'/plugged/dash.vim/plugin/dash.vim')) nnoremap K :Dash endif "----------------------------------------------------------------------------------------------------------------------- @@ -388,7 +388,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Deoplete "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/deoplete.nvim/plugin/deoplete.vim')) +if !empty(glob(EditorDir.'/plugged/deoplete.nvim/plugin/deoplete.vim')) let g:deoplete#enable_at_startup = 1 endif "----------------------------------------------------------------------------------------------------------------------- @@ -398,7 +398,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Neomake "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/neomake/plugin/neomake.vim')) +if !empty(glob(EditorDir.'/plugged/neomake/plugin/neomake.vim')) autocmd! BufWritePost * Neomake let g:neomake_javascript_enabled_makers = ['eslint'] "let g:neomake_verbose = 3 @@ -415,7 +415,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " CamelCaseMotion "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/CamelCaseMotion/plugin/camelcasemotion.vim')) +if !empty(glob(EditorDir.'/plugged/CamelCaseMotion/plugin/camelcasemotion.vim')) map ,w CamelCaseMotion_w map ,e CamelCaseMotion_e map ,b CamelCaseMotion_b @@ -427,7 +427,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Vim JSON "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/vim-json/indent/json.vim')) +if !empty(glob(EditorDir.'/plugged/vim-json/indent/json.vim')) let g:vim_json_syntax_conceal = 0 endif "----------------------------------------------------------------------------------------------------------------------- @@ -437,7 +437,7 @@ endif "----------------------------------------------------------------------------------------------------------------------- " Ack Searching "----------------------------------------------------------------------------------------------------------------------- -if !empty(glob(EditorDir.'plugged/ack.vim/plugin/ack.vim')) +if !empty(glob(EditorDir.'/plugged/ack.vim/plugin/ack.vim')) nnoremap / :call AckSearch() function! AckSearch() call inputsave() -- cgit v1.2.3