Move general settings and plugins out of init.vim

This commit is contained in:
2021-10-14 21:03:29 +03:00
parent 942c2c67ca
commit f116ecac18
6 changed files with 66 additions and 62 deletions

23
nvim/general.vim Normal file
View File

@@ -0,0 +1,23 @@
syntax on
set tabstop=2
set shiftwidth=2
set expandtab
set number
set relativenumber
set wrap
set noswapfile
set encoding=utf-8
set hidden
set nowritebackup
set cmdheight=2
set updatetime=300
set shortmess+=c
set mouse=nv
set cursorline
set termguicolors
" MY LEADER KEY IS GONNA BE A SPACE
let mapleader = " "