Files
dot_files/vim/.vimrc
ayabusa 4915ce48da hop
2025-12-24 14:48:39 +01:00

21 lines
490 B
VimL

" Disable compatibility with vi which can cause unexpected issues.
set nocompatible
" Enable type file detection. Vim will be able to try to detect the type of file in use.
filetype on
" Enable plugins and load plugin for the detected file type.
filetype plugin on
" Load an indent file for the detected file type.
filetype indent on
" Turn syntax highlighting on.
syntax on
" Add numbers to each line on the left-hand side.
set number
" Enable mouse for selection n all
set mouse+=a