Advertisement
Guest User

Untitled

a guest
May 26th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. "VimRC - abaturovnick@gmail.com
  2. "Nocompatible to old shit
  3. set nocompatible
  4. set t_Co=256
  5.  
  6. "Pathogen on
  7. execute pathogen#infect()
  8. filetype plugin indent on
  9.  
  10. runtime! ftplugin/man.vim
  11.  
  12. "APPEARANCE
  13. "vim-airline settings
  14. set laststatus=2
  15. let g:airline_powerline_fonts = 1
  16. let g:airline#extensions#tabline#enabled = 1
  17. let g:NERDTreeWinPos = "right"
  18. map <F2> :NERDTreeToggle<CR>
  19.  
  20. "Usefull interface features
  21. set number
  22. set ruler
  23. set ignorecase
  24. set autoindent
  25. set hlsearch
  26.  
  27. set noerrorbells
  28. set novisualbell
  29. set t_vb=
  30. set tm=500
  31.  
  32. "Correct Ctrl+V inserting
  33. "set paste
  34.  
  35. "Colors and themes
  36. syntax enable
  37. set background=dark
  38. colorscheme pablo
  39.  
  40. "Indent guides
  41. "let g:indent_guides_auto_colors = 0
  42.  
  43. "Encoding
  44. set encoding=utf8
  45.  
  46. set ffs=unix,dos,mac
  47.  
  48. set nobackup
  49. set nowb
  50. set noswapfile
  51.  
  52. set shiftwidth=4
  53. set tabstop=4
  54.  
  55. "Turn to red all symbols, which is bahind 80-letters limit to row
  56. match ErrorMsg '\%>80v.\+'
  57.  
  58. "Set pgsql default to .sql
  59. let g:sql_type_default = 'pgsql'
  60.  
  61. "Aliases
  62. command JsonPretty %!python -m json.tool
  63.  
  64. "Remap
  65. "nnoremap <esc> :noh<return><esc>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement