Move all config files to config directory and add corresponding changes to bootstrap script
This commit is contained in:
27
config/nvim/general.vim
Normal file
27
config/nvim/general.vim
Normal file
@@ -0,0 +1,27 @@
|
||||
syntax on
|
||||
|
||||
set tabstop=2
|
||||
set shiftwidth=2
|
||||
set expandtab
|
||||
set autoindent
|
||||
|
||||
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=a " nv for normal and visual only
|
||||
set cursorline
|
||||
set clipboard+=unnamedplus
|
||||
set splitright
|
||||
set splitbelow
|
||||
|
||||
set termguicolors
|
||||
|
||||
" MY LEADER KEY IS GONNA BE A SPACE
|
||||
let mapleader = " "
|
||||
Reference in New Issue
Block a user