guest@dotshare [~/groups/vim/rc] $ ls simple-Vim-config/ | cat

simple Vim config (scrot, raw, dl)

stakewinner00 Jul 15, 2014 (vim/rc)

SCROT

 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
syntax on
set autoindent
set encoding=utf-8
set smartindent
set smarttab
set tabstop=3
set shiftwidth=3
set expandtab 
set background=dark

set fileencoding=utf-8
set encoding=utf-8
set termencoding=utf-8

set hlsearch
set textwidth=0   " No poner limite en ancho.
set number
set cursorline
"se cursorcolumn

set mouse=a
"set laststatus=2
"set statusline+=%{strlen(&fenc)?&fenc:&enc},
"?
runtime! debian.vim


" Uncomment the following to have Vim jump to the last position when
" reopening a file
if has("autocmd")
  au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif
endif


" Uncomment the following to have Vim load indentation rules and plugins
" according to the detected filetype.
"if has("autocmd")
"  filetype plugin indent on
"endif

let g:colors_name = "default"

hi Normal                  ctermfg=22 "15
hi Define                  ctermfg=50
hi Comment ctermfg=28
hi CursorLine  cterm=bold 
hi CursorLineNR  cterm=bold ctermfg=White
hi LineNr ctermfg=Black

"highlight Constant ctermbg=Black
"highlight Cursor ctermfg=black

CLICK TO VIEW

x