Compare commits

..

2 Commits

Author SHA1 Message Date
Eli Ribble ff8ea83cbc Add "ve" command to fish.
Useful for Python environment management.

Or I should start using pipx...
2023-12-05 17:46:41 -07:00
Eli Ribble b6db763b8e 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.
2023-12-05 17:44:09 -07:00
5 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

3
fish/functions/ve.fish Normal file
View File

@ -0,0 +1,3 @@
function ve
source ve/bin/activate.fish
end

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