diff options
| -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 | 
