This commit is contained in:
ayabusa
2025-12-24 14:48:39 +01:00
parent aeda0e9ea3
commit 4915ce48da
2 changed files with 693 additions and 0 deletions

20
vim/.vimrc Normal file
View File

@@ -0,0 +1,20 @@
" 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