diff options
| author | Chris <[email protected]> | 2020-05-25 17:45:56 -0400 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-05-25 17:45:56 -0400 | 
| commit | f4c1e8dc3b41be9e37c51257885c2440a7c2fdbe (patch) | |
| tree | 63fac816050abdb1c587c41491b00e1f8de52e05 | |
| parent | 3bb390f1ebd55a3adec48376e2f4e86ad60e9fa3 (diff) | |
updated paths.vim path
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | coc-settings.json | 1 | ||||
| -rw-r--r-- | general/paths.vim | 1 | ||||
| -rw-r--r-- | init.vim | 5 | 
4 files changed, 6 insertions, 3 deletions
| @@ -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 @@ - @@ -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 | 
