Rafael Bodill
Rafael Bodill
Hi @rpopp-fni-stl-com, it's not an issue with `config/local.vim`. I'm using a plugin to autodetect these settings, called [vim-sleuth](https://github.com/tpope/vim-sleuth). You can disable it by creating a `config/plugins.local.yaml` file and adding: ```yaml...
You can run `:LspInstallInfo` to get a nice UI with all LSP servers available, and installed. Try uninstalling and reinstalling, and look in logs at `~/.cache/nvim`, specially `lsp.log`.
Hi @chrischen, check latest 5ae35f30 commit.
@chrischen what version of Neovim are using? Can you try running: ``` :call dein#recache_runtimepath() ``` And restart Neovim?
Never tested this with WSL. It looks like a race-condition between plenary and dependant plugins. Let me know if you find any more issues.
I'm using tmux and urlview for ages. https://github.com/rafi/.config/blob/master/tmux/config#L196-L197 does netrw allow opening links?
Seems so. Thanks for reporting, I guess I had fun hacking on it, but am not really using it :)
hi @mm1ke. Is your `g:clipboard` set? What does `:echo g:clipboard` shows you? Could you try changing that line to either ```vim set clipboard& clipboard+=unnamedplus ``` or ```vim set clipboard& clipboard^=unnamed,unnamedplus...
@mm1ke it seems the behavior is different on macOS/Linux/Windows. Could you try replacing that line with `set clipboard^=unnamed` all-together and see if it works?
@kraxli for the dap part plugins, try ```yaml - repo: nvim-telescope/telescope-dap.nvim if: has('nvim-0.5') lazy: true - repo: mfussenegger/nvim-dap if: has('nvim-0.5') depends: [ auto-session ] on_lua: dap hook_post_source: lua require('plugins.dap') -...