24 lines
386 B
VimL
24 lines
386 B
VimL
set nocompatible
|
|
filetype plugin indent on
|
|
syntax on
|
|
"set background=dark
|
|
set number
|
|
set ruler
|
|
set showmatch
|
|
set hlsearch
|
|
set showmatch
|
|
set autoindent
|
|
set expandtab
|
|
set smartindent
|
|
set smarttab
|
|
set ignorecase
|
|
set mouse=a
|
|
"set cursorline
|
|
"set cursorcolumn
|
|
set shiftwidth=4
|
|
set tabstop=4
|
|
set expandtab
|
|
set incsearch
|
|
set ignorecase
|
|
|
|
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab |