summaryrefslogtreecommitdiff
path: root/.vim/vimrc_files/plugin_config.vim
diff options
context:
space:
mode:
authorBlubber <f2005278@mvrht.com>2016-10-11 23:37:37 +0200
committerBlubber <f2005278@mvrht.com>2016-10-11 23:37:37 +0200
commit7e7256d1dc22619373271ff12ff677e3b11067dc (patch)
tree3c4f5ff090fce5c08e11dec8f091f1168b478c78 /.vim/vimrc_files/plugin_config.vim
parent3c2961a0d7c16407428b1f8bdae3f9810ebf2049 (diff)
downloaddotfiles-7e7256d1dc22619373271ff12ff677e3b11067dc.tar.gz
dotfiles-7e7256d1dc22619373271ff12ff677e3b11067dc.zip
merged git files into vimrc and added markers
Diffstat (limited to '.vim/vimrc_files/plugin_config.vim')
-rw-r--r--.vim/vimrc_files/plugin_config.vim40
1 files changed, 0 insertions, 40 deletions
diff --git a/.vim/vimrc_files/plugin_config.vim b/.vim/vimrc_files/plugin_config.vim
deleted file mode 100644
index c7b1a8f..0000000
--- a/.vim/vimrc_files/plugin_config.vim
+++ /dev/null
@@ -1,40 +0,0 @@
-" dotfiles -- .vim/vimrc_files/plugin_config.vim
-" author: johannst
-
-" +----------------------------+
-" | Vim-Airline |
-" +----------------------------+
-" Enable the list of buffers
-let g:airline#extensions#tabline#enabled = 1
-" Show just the filename
-let g:airline#extensions#tabline#fnamemod = ':t'
-
-let g:airline_powerline_fonts = 1
-
-if !exists('g:airline_symbols')
- let g:airline_symbols = {}
-endif
-
-" +----------------------------+
-" | Tagbar |
-" +----------------------------+
-let g:tagbar_ctags_bin='~/.vim/bin/ctags'
-
-" +----------------------------+
-" | OmniCppComplete |
-" +----------------------------+
-" add tags
-" set tags+=~/.vim/tags/cpp_tags
-
-" OmniCppComplete
-"let OmniCpp_NamespaceSearch = 1
-"let OmniCpp_GlobalScopeSearch = 1
-"let OmniCpp_ShowAccess = 1
-"let OmniCpp_ShowPrototypeInAbbr = 1 " show function parameters
-"let OmniCpp_MayCompleteDot = 1 " autocomplete after .
-"let OmniCpp_MayCompleteArrow = 1 " autocomplete after ->
-"let OmniCpp_MayCompleteScope = 1 " autocomplete after ::
-"let OmniCpp_DefaultNamespaces = ["std", "_GLIBCXX_STD"]
-"" automatically open and close the popup menu / preview window
-"au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif
-"set completeopt=menuone,menu,longest,preview