From 180d721092bac59a46528833b906673272932ba1 Mon Sep 17 00:00:00 2001 From: Candifloss Date: Sun, 28 Jul 2024 12:16:34 +0000 Subject: [PATCH] Basic config --- nvim/init.vim | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nvim/init.vim diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..6e7c08b --- /dev/null +++ b/nvim/init.vim @@ -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 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 \ No newline at end of file