Conversation
The diagnostics from clangd really suffer from too many false positives. Mostly ends up getting ignored, even when it's right, as a result :/
0
0
1
@pdp7 Yup. https://github.com/neovim/nvim-lspconfig + clangd. s/clangd/rust-analyzer when I try to write Rust.
0
0
1
@pdp7 Ohh, don't worry - I am scratching the surface too. Got a about a dozen plugins only, mostly stuff like treesitter, telescope, & a couple other bits to make code searching easier.
1
0
1
@pdp7

Not much (at least compared to some friends)
```
call plug#begin()
Plug 'preservim/vim-colors-pencil'

Plug 'dnlhc/glance.nvim'
Plug 'airblade/vim-gitgutter'
Plug 'folke/which-key.nvim'
Plug 'lewis6991/gitsigns.nvim'
Plug 'vim-airline/vim-airline'
Plug 'cloudhead/neovim-fuzzy'
Plug 'neovim/nvim-lsp'
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim', { 'branch': '0.1.x' }
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'nvim-telescope/telescope-fzy-native.nvim'
Plug 'sindrets/diffview.nvim'
Plug 'sharkdp/fd'
Plug 'kyazdani42/nvim-web-devicons'
Plug 'kyazdani42/nvim-tree.lua'
Plug 'tpope/vim-fugitive'
call plug#end()
```
0
0
1