Old ansible configuration for servers
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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