Merge remote-tracking branch 'origin/main' into b12f

This commit is contained in:
Benjamin Bädorf 2021-11-08 00:07:14 +00:00
commit decf354138
2 changed files with 8 additions and 5 deletions

View file

@ -23,16 +23,17 @@ in
home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
home.packages = [
ag
ack
ag
bat
exa
fd
gh
glow
nnn
powerline
vifm
watson
nnn
fd
];
programs.neovim = import ./nvim { inherit config; inherit pkgs; };

View file

@ -42,7 +42,9 @@ lua <<EOF
['workspace'] = vim.fn.stdpath('cache')..'/java-workspaces'
}
},
'jsonls', ------------------------------- JSON
['jsonls'] = { -------------------------- JSON
['cmd'] = {"json-languageserver", "--stdio"}
},
'phpactor', ----------------------------- PHP
'pyls', --------------------------------- Python
'rnix', --------------------------------- Nix
@ -94,7 +96,7 @@ let g:diagnostic_trimmed_virtual_text = '40'
let g:diagnostic_insert_delay = 1
" Show diagnostic popup on cursor hold
autocmd CursorHold * lua vim.lsp.diagnostic.show_line_diagnostics()
autocmd CursorHold * lua vim.lsp.diagnostic.show_line_diagnostics({ focusable = false })
" Goto previous/next diagnostic warning/error
" nnoremap <silent> g[ <cmd>PrevDiagnosticCycle<cr>