# Neovim cheatsheet for this setup ## Save and exit ```vim :w -- save file w -- w -- :wq -- save and exit wq -- :q -- exit without saving q -- q -- :q! -- force to quit without saving qq -- ``` ## Buffer navigation ```vim :e -- open a file in a new buffer e -- :ls -- list buffers ls -- :bnext -- goto next buffer f -- :bprevious -- goto previous buffer d -- ```