@alexbuzzbee Used to use almost exclusively VSCodium, but I took the time recently to learn and switch fully to vim. Super satisfying to use, dead simple, and fast. Plus it makes you feel really cool, and I’m slowly moving towards a fully terminal-based workflow.
@ramob@alexbuzzbee Currently plugin-free actually. Looks something like this:
``` set number syntax on set tabstop=2 set autoindent set expandtab set softtabstop=2 set wrap set showmode set showcmd set hlsearch set incsearch noremap <Up> <Nop> noremap <Down> <Nop> noremap <Left> <Nop> noremap <Right> <Nop> ```
@FIGBERT Thanks, I think mine has is the hlsearch,one numbers, and spell check so far. It's definetly a game changer but there is quite a learning curve @alexbuzzbee
@ramob @alexbuzzbee Currently plugin-free actually. Looks something like this:
```
set number
syntax on
set tabstop=2
set autoindent
set expandtab
set softtabstop=2
set wrap
set showmode
set showcmd
set hlsearch
set incsearch
noremap <Up> <Nop>
noremap <Down> <Nop>
noremap <Left> <Nop>
noremap <Right> <Nop>
```
I expect this to grow as I get more proficient.