Old ansible configuration for servers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

chris-vimrc 326B

1234567891011121314151617
  1. syntax on
  2. set background=dark
  3. if has("autocmd")
  4. au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
  5. \| exe "normal g'\"" | endif
  6. endif
  7. set showmatch
  8. set ignorecase
  9. set incsearch
  10. highlight ExtraWhitespace ctermbg=red guibg=red
  11. match ExtraWhitespace /\s\+$/
  12. au BufNewFile,BufRead *.less set filetype=less