Skip to content

Commit 33df85a

Browse files
committed
refactor(install/nvim): remove home directory venvs
1 parent f41e7cb commit 33df85a

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

.config/nvim/lua/core/options.lua

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
local o, opt = vim.o, vim.opt
44
local g = vim.g
55

6-
g.python3_host_prog = vim.fn.expand '~/.virtualenvs/py3nvim/bin/python' -- set python provider
7-
86
opt.shortmess:append 'WcC' -- Reduce command line messages
97

108
-- Basic UI Enhancements

.install.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,3 @@ echo ".dotfiles" >>.gitignore
4545
git clone --bare https://github.com/collindutter $HOME/.dotfiles
4646
dotfiles checkout
4747
dotfiles config --local status.showUntrackedFiles no
48-
49-
echo "Configuring neovim virtualenvs..."
50-
mkdir .virtualenvs
51-
python -m venv .virtualenvs/py3nvim
52-
./virtualenvs/bin/pip install pynvim
53-
python -m venv .virtualenvs/debugpy
54-
./virtualenvs/bin/pip install debugpy

0 commit comments

Comments
 (0)