Add nvim configuration.
This includes various things I've built up over time: * Python behavior around tabs and indentation * Default line numbering and color scheme. Also ignore the netrwhist file it's per-machine.
This commit is contained in:
parent
3a057f402e
commit
b6db763b8e
4 changed files with 9 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
nvim/.netrwhist
|
5
nvim/after/ftplugin/python.vim
Normal file
5
nvim/after/ftplugin/python.vim
Normal file
|
@ -0,0 +1,5 @@
|
|||
set nu
|
||||
set noexpandtab
|
||||
set noautoindent
|
||||
set tabstop=4
|
||||
set indentexpr=
|
1
nvim/indent/python.vim
Normal file
1
nvim/indent/python.vim
Normal file
|
@ -0,0 +1 @@
|
|||
set indentexpr=
|
2
nvim/init.vim
Normal file
2
nvim/init.vim
Normal file
|
@ -0,0 +1,2 @@
|
|||
colorscheme koehler
|
||||
set nu
|
Reference in a new issue