1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
| set nocompatible " be iMproved, required filetype off " required
syntax enable let g:solarized_termcolors=256 set background=dark colorscheme molokai
filetype on filetype indent on filetype plugin on filetype plugin indent on
set listchars=tab:>-,trail:- set list
set nu set mouse=a
set autoread set wildignore=*.swp,*.bak,*.pyc,*.class,.svn set showmatch set incsearch set smartcase set tabstop=8 set hidden set wildmode=list:longest set ttyfast
set encoding=utf-8 set ffs=unix,dos,mac set completeopt=longest,menu
let t_Co = 256
let g:molokai_original = 1 let g:rehash256 = 1 set background=dark
hi Comment guifg=#ffff00 ctermfg=226 cterm=none
autocmd FileType mail set nopaste tw=72 spell
highlight clear SpellBad highlight SpellBad term=standout ctermfg=1 term=underline cterm=underline highlight clear SpellCap highlight SpellCap term=underline cterm=underline highlight clear SpellRare highlight SpellRare term=underline cterm=underline highlight clear SpellLocal highlight SpellLocal term=underline cterm=underline
if v:lang =~ "utf8$" || v:lang =~ "UTF-8$" set fileencodings=ucs-bom,utf-8,latin1 endif
set nocompatible " Use Vim defaults (much better!) set bs=indent,eol,start " allow backspacing over everything in insert mode set viminfo='20,\"50 " read/write a .viminfo file, don't store more " than 50 lines of registers set history=100 set ruler " show the cursor position all the time set nu set hlsearch
set colorcolumn=81 set mouse=a set listchars=tab:>-,trail:- set list set nobackup set noswapfile
set wildignore=*.swp,*.bak,*.pyc,*.class,.svn
set cursorcolumn set cursorline
set t_ti= t_te=
set title set novisualbell set noerrorbells set t_vb= set tm=500
set viminfo^=% set ruler set showcmd set showmode
set scrolloff=3 set statusline=%<%f\ %h%m%r%=%k[%{(&fenc==\"\")?&enc:&fenc}%{(&bomb?\",BOM\":\"\")}]\ %-14.(%l,%c%V%)\ %P set laststatus=2 if has("autocmd") augroup redhat autocmd! autocmd BufReadPost * \ if line("'\"") > 0 && line ("'\"") <= line("$") | \ exe "normal! g'\"" | \ endif autocmd BufNewFile,BufReadPre /media/*,/run/media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec augroup END endif
if &t_Co > 2 || has("gui_running") syntax on set hlsearch endif
filetype plugin on
if &term=="xterm" set t_Co=8 set t_Sb=m set t_Sf=m endif
let &guicursor = &guicursor . ",a:blinkon0" set nomodeline
|