Basic config

This commit is contained in:
Candifloss 2024-07-28 12:16:34 +00:00
parent dfd565020f
commit 180d721092

9
nvim/init.vim Normal file
View File

@ -0,0 +1,9 @@
set nocompatible " disable compatibility to old-time vi
set ignorecase " case insensitive
set mouse=v " middle-click paste with
set incsearch " incremental search
set tabstop=4 " number of columns occupied by a tab
set softtabstop=4 " see multiple spaces as tabstops so <BS> does the right thing
set shiftwidth=4 " width for autoindents
filetype plugin indent on "allow auto-indenting depending on file type
syntax on " syntax highlighting