Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- "set nocompatible " be iMproved, required
- "filetype off " required
- " set the runtime path to include Vundle and initialize
- set rtp+=~/.vim/bundle/Vundle.vim
- call vundle#begin()
- " alternatively, pass a path where Vundle should install plugins
- "call vundle#begin('~/some/path/here')
- let g:clang_c_options = '-std=gnu11'
- " let Vundle manage Vundle, required
- Plugin 'VundleVim/Vundle.vim'
- Plugin 'MarcWeber/vim-addon-mw-utils'
- Plugin 'tomtom/tlib_vim'
- " arbol de directorios, con F2 toggle
- Plugin 'https://github.com/scrooloose/nerdtree'
- let g:NERDTreeChDirMode = 2 " Cambia el directorio actual al nodo padre actual
- " Abrir/cerrar NERDTree con F2
- map <F2> :NERDTreeToggle<CR>
- "Barra de estados
- Plugin 'vim-airline/vim-airline'
- Plugin 'vim-airline/vim-airline-themes' " Temas para airline
- let g:airline#extensions#tabline#enabled = 1 " Mostrar buffers abiertos (como pestañas)
- let g:airline#extensions#tabline#fnamemod = ':t' " Mostrar sólo el nombre del archivo
- " Cargar fuente Powerline y símbolos (ver nota)
- let g:airline_powerline_fonts = 1
- set noshowmode " No mostrar el modo actual (ya lo muestra la barra de estado)
- "Autocompletado
- Plugin 'garbas/vim-snipmate'
- Plugin 'honza/vim-snippets'
- Plugin 'https://github.com/davidhalter/jedi-vim'
- " All of your Plugins must be added before the following line
- call vundle#end() " required
- filetype plugin indent on " required
- " To ignore plugin indent changes, instead use:
- "filetype plugin on
- "
- " Brief help
- " :PluginList - lists configured plugins
- " :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
- " :PluginSearch foo - searches for foo; append `!` to refresh local cache
- " :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
- "
- " see :h vundle for more details or wiki for FAQ
- " Put your non-Plugin stuff after this line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement