What is your vim configuration
Posted: Wed Oct 26, 2022 3:02 pm
I am planning to switch from CLion to vim and I'm wondering what vim configs do you have?
The Place to Start for Operating System Developers
https://f.osdev.org/
Code: Select all
filetype plugin on
filetype indent on
filetype detect
syn on
set nu ruler showcmd
set et sta sw=4 ts=8 sts=4 ai si title
set cst
set bs=indent,eol,start
au FileType mail set tw=72 noai nosi
au FileType man set nonu
set cmdheight=2
au BufNewFile,BufRead *.asm set ft=nasm
set ls=2
set statusline=%f%m%r%w%y%q%=%B%20l,%c%V%20P
let g:tex_flavor = "latex"
let c_no_curly_error = 1
let g:is_posix = 1
set bg=dark
Oh wow thats realy fancy, hope you dont mind if i use it sooklange wrote:Before I wrote my own editor, I had a a long vimrc I had inherited from a colleague many years ago. And now, even with my own editor, I still have an rc file with a bunch of stuff in it...
Code: Select all
[i] ~/.config/nvim/bundle$ ls
dhall-vim editorconfig-vim gruvbox VimCompletesMe vim-cpp vim-fugitive vim-ledger vim-lion vim-lsp vim-minisnip vim-restructuredtext
[i] ~/.config/nvim/bundle$