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.

22 lines
596 B

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