From f4c1e8dc3b41be9e37c51257885c2440a7c2fdbe Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 25 May 2020 17:45:56 -0400 Subject: [PATCH] updated paths.vim path --- .gitignore | 2 +- coc-settings.json | 1 + general/paths.vim | 1 - init.vim | 5 ++++- 4 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 general/paths.vim diff --git a/.gitignore b/.gitignore index db1d8dff..ac7b0a79 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ tags* pythonpath.vim nodepath.vim autoload/plugged/* +paths.vim session -general/paths.vim wiki/ diff --git a/coc-settings.json b/coc-settings.json index 61aa85a6..234ba59e 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -38,6 +38,7 @@ // python config "python.linting.enabled": true, "python.linting.pylintEnabled": true, + // "python.linting.pylintPath": "~/.local/bin/pylint", // snippets "snippets.ultisnips.directories": ["UltiSnips", "~/.config/nvim/snips"], diff --git a/general/paths.vim b/general/paths.vim deleted file mode 100644 index 8b137891..00000000 --- a/general/paths.vim +++ /dev/null @@ -1 +0,0 @@ - diff --git a/init.vim b/init.vim index 2f2f39d0..1318fc87 100644 --- a/init.vim +++ b/init.vim @@ -11,7 +11,6 @@ source $HOME/.config/nvim/general/settings.vim source $HOME/.config/nvim/general/functions.vim source $HOME/.config/nvim/keys/mappings.vim source $HOME/.config/nvim/keys/which-key.vim -source $HOME/.config/nvim/general/paths.vim " Source depending on if VSCode is our client if exists('g:vscode') @@ -44,6 +43,10 @@ endif " Experimental +if !empty(glob("./paths.vim")) + source $HOME/.config/nvim/paths.vim +endif + " Codi let g:codi#rightalign=0