Guest User

Untitled

a guest
Sep 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.23 KB | None | 0 0
  1. syntax on
  2.  
  3. set tabstop=3
  4. set shiftwidth=3
  5. set copyindent
  6. set cindent
  7. set autoindent
  8.  
  9. set nu!
  10.  
  11. set nocompatible               " be iMproved
  12. filetype off                   " required!
  13.  
  14. set rtp+=~/.vim/bundle/vundle/
  15. call vundle#rc()
  16.  
  17. " let Vundle manage Vundle
  18. " required!
  19. Bundle 'gmarik/vundle'
  20.  
  21. " My Bundles here:
  22. "
  23. " original repos on github
  24. Bundle 'Lokaltog/vim-powerline'
  25. Bundle 'altercation/vim-colors-solarized'
  26. Bundle 'nanotech/jellybeans.vim'
  27. Bundle 'scrooloose/nerdtree'
  28. "Bundle 'fholgado/minibufexpl.vim'
  29. "
  30. " non github repos
  31. Bundle 'git://git.wincent.com/command-t.git'
  32.  
  33. filetype plugin indent on     " required!
  34.  
  35.  
  36. syntax enable
  37. set cursorline
  38. set cursorcolumn
  39. set encoding=utf-8
  40. set t_Co=256
  41. " let g:solarized_termcolors=256
  42. " let g:solarized_termtrans=1
  43. " let g:solarized_bold=1
  44. " let g:solarized_underline=1
  45. " let g:solarized_italic=1
  46. " Opciones de la GUI
  47. set gfn=Inconsolata\ Medium\ 14
  48. set go-=T
  49. set go-=m
  50. set go-=r
  51. set go-=R
  52. set go-=l
  53. set go-=L
  54.  
  55. set bg=dark
  56. " colorscheme solarized
  57. colorscheme jellybeans
  58.  
  59. " PowerLine
  60. let g:Powerline_symbols='unicode'
  61. "let g:Powerline_symbols='fancy'
  62. set laststatus=2
  63.  
  64. " Mapa de teclado
  65. map <C-t> :CommandT<enter>
  66. map <C-y> :NERDTree<enter>
Add Comment
Please, Sign In to add comment