From 4ef7645215c7fb2fc6bcef29c3db509ee7e62a69 Mon Sep 17 00:00:00 2001 From: candifloss Date: Mon, 23 Dec 2024 15:13:40 +0530 Subject: [PATCH] remove old nvim config --- nvim/README.md | 10 ---------- nvim/init.vim | 9 --------- 2 files changed, 19 deletions(-) delete mode 100644 nvim/README.md delete mode 100644 nvim/init.vim diff --git a/nvim/README.md b/nvim/README.md deleted file mode 100644 index 63addf0..0000000 --- a/nvim/README.md +++ /dev/null @@ -1,10 +0,0 @@ -# Neovim editor - -Very basic config - no plugins or themes yet, as I like the current(default) look. -The current config is compatible with vim, too. -Might change later. - -## Nvim config file location - -For user-specific config: `~/.config/nvim/init.vim` -For system-wide config: `/etc/xdg/nvim/init.vim` \ No newline at end of file diff --git a/nvim/init.vim b/nvim/init.vim deleted file mode 100644 index 6e7c08b..0000000 --- a/nvim/init.vim +++ /dev/null @@ -1,9 +0,0 @@ -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