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:
Eli Ribble 2023-12-05 17:41:57 -07:00
parent 3a057f402e
commit b6db763b8e
4 changed files with 9 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
nvim/.netrwhist

View File

@ -0,0 +1,5 @@
set nu
set noexpandtab
set noautoindent
set tabstop=4
set indentexpr=

1
nvim/indent/python.vim Normal file
View File

@ -0,0 +1 @@
set indentexpr=

2
nvim/init.vim Normal file
View File

@ -0,0 +1,2 @@
colorscheme koehler
set nu