Gnu Guix Rice (ofc with stow)
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.

26 lines
636 B

2 years ago
  1. set termguicolors
  2. set mouse+=a
  3. set number
  4. set wrap
  5. set linebreak
  6. " use indents of 4 spaces, and have them copied down lines:
  7. set shiftwidth=2
  8. set tabstop=2
  9. set softtabstop=2
  10. set expandtab
  11. set smarttab
  12. set autoindent
  13. set textwidth=80
  14. filetype indent off
  15. " enable filetype detection:
  16. filetype on
  17. autocmd FileType markdown,tex,text set nosmarttab noautoindent
  18. " for C-like programming, have automatic indentation:
  19. autocmd FileType c,cpp,slang set cindent
  20. " * Keystrokes -- Insert Mode
  21. autocmd Filetype python set shiftwidth=4 tabstop=4 softtabstop=4
  22. nnoremap <c-h> <c-w>h
  23. nnoremap <c-j> <c-w>j
  24. nnoremap <c-k> <c-w>k
  25. nnoremap <c-l> <c-w>l