Old ansible configuration for servers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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