mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
added existing nvim config
This commit is contained in:
parent
d6d6dab380
commit
bdf3cdecda
24 changed files with 996 additions and 0 deletions
30
vim/.vim/settings.vim
Normal file
30
vim/.vim/settings.vim
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
filetype on
|
||||
filetype plugin on
|
||||
filetype indent on
|
||||
syntax on
|
||||
set number
|
||||
set cursorline
|
||||
set cursorcolumn
|
||||
set clipboard=unnamedplus
|
||||
set tabstop=2
|
||||
set expandtab
|
||||
set softtabstop=2
|
||||
set shiftwidth=2
|
||||
set cc=120
|
||||
set scrolloff=10
|
||||
set nowrap
|
||||
set incsearch
|
||||
set ignorecase
|
||||
set smartcase
|
||||
set showcmd
|
||||
set showmode
|
||||
set showmatch
|
||||
set hlsearch
|
||||
set history=1000
|
||||
set splitright
|
||||
|
||||
if version >= 703
|
||||
set undodir=~/.vim/backup
|
||||
set undofile
|
||||
set undoreload=10000
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue