add fundamental nvim and vim configs
This commit is contained in:
parent
285321fa38
commit
99c942cc3b
8 changed files with 274 additions and 0 deletions
25
dot_vimrc
Normal file
25
dot_vimrc
Normal file
|
@ -0,0 +1,25 @@
|
|||
syntax enable
|
||||
set number
|
||||
set ruler
|
||||
set linebreak
|
||||
set showbreak=+++
|
||||
set textwidth=80
|
||||
set showmatch
|
||||
set visualbell
|
||||
|
||||
set hlsearch
|
||||
set smartcase
|
||||
set ignorecase
|
||||
set incsearch
|
||||
|
||||
set autoindent
|
||||
set shiftwidth=2
|
||||
set smartindent
|
||||
set smarttab
|
||||
set softtabstop=2
|
||||
|
||||
set ruler
|
||||
|
||||
set undolevels=1000
|
||||
set backspace=indent,eol,start
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue