Added neovim config
This commit is contained in:
parent
feb12c4ebc
commit
22c05c3eba
2 changed files with 34 additions and 2 deletions
|
@ -1,7 +1,11 @@
|
|||
[PowerShell]
|
||||
in="src/PowerShell/profile.ps1"
|
||||
out="~/Documents/WindowsPowerShell"
|
||||
out="~/Documents/WindowsPowerShell/profile.ps1"
|
||||
|
||||
[Git]
|
||||
in="src/git/gitconfig-win"
|
||||
in="src/Git/gitconfig-win"
|
||||
out="~/.gitconfig"
|
||||
|
||||
[Neovim]
|
||||
in="src/Neovim/init.vim"
|
||||
out="~/AppData/Local/nvim/init.vim"
|
||||
|
|
28
src/Neovim/init.vim
Normal file
28
src/Neovim/init.vim
Normal file
|
@ -0,0 +1,28 @@
|
|||
"Clipboard
|
||||
set clipboard+=unnamedplus
|
||||
|
||||
"Tabulations
|
||||
set tabstop=2
|
||||
set shiftwidth=2
|
||||
|
||||
set noexpandtab
|
||||
|
||||
"Mouse
|
||||
set mouse=a
|
||||
|
||||
"Search
|
||||
set ignorecase
|
||||
|
||||
"Completion
|
||||
set wildmode=longest,list,full
|
||||
|
||||
"Line numbers
|
||||
set number
|
||||
|
||||
"Text wrap
|
||||
set tw=119
|
||||
set cc=120
|
||||
|
||||
"Split side
|
||||
set splitright
|
||||
set splitbelow
|
Loading…
Reference in a new issue