Pavel Kolář

Results 41 comments of Pavel Kolář

@FransBouma I personally view the default configuration as positive as it gives you more accurate picture what is something you can expect on project which you haven't done any optimizations...

@jonnybee So now some frameworks are optimized and some are not, it would probably be worth mentioning this somewhere so there is more context. Even better solution would be to...

I would also love to have vim keybindings and neovim is definitely way to go so you don't have to reimplement all of vim or use unmaintained plugins. For inspiration...

Fix I am using ```lua local function setup_servers() require'lspinstall'.setup() local servers = require'lspinstall'.installed_servers() for _, server in pairs(servers) do local config = make_config() if server == "csharp" then server =...

@MordechaiHadad Well I'll try to give it another look sometime. I was following everything very carefully on fresh ubuntu running in docker and I got exactly the same problem as...

@MordechaiHadad I have tried again on clean ubuntu install and it seems to be not very usable at the moment. It reports namespace as missing after syntax error and keeps...

My config: ``` root@534e8d105493:/NvimLsp# cat ~/.config/nvim/init.vim if empty(glob('~/.local/share/nvim/site/autoload/plug.vim')) silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim autocmd VimEnter * PlugInstall --sync | source ~/.config/nvim/init.vim endif call plug#begin('~/.config/nvim/plugged') Plug 'neovim/nvim-lspconfig' Plug 'kabouzeid/nvim-lspinstall'...

@MordechaiHadad ``` buf_set_keymap('n', 'gD', 'lua vim.lsp.buf.declaration()', opts) buf_set_keymap('n', 'gd', 'lua vim.lsp.buf.definition()', opts) ``` At ~0:40 you can se me trying to use both of these commands.

@kabouzeid Here https://github.com/kabouzeid/nvim-lspinstall/issues/75#issuecomment-846569808 you said everything works for you even go to definition hows that possible? It just never worked for me maybe you did something which is not mentioned...

@ajoubert Makes sense, I'll check when the fix PR is merged.