mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-05 19:02:24 +00:00
Fic cmp and add powershell
This commit is contained in:
parent
9fcad51633
commit
19d7ce7fa0
3 changed files with 12 additions and 3 deletions
|
@ -115,7 +115,7 @@
|
|||
|
||||
; lsp <<<
|
||||
:ray-x/lsp_signature.nvim {:events [:BufEnter]}
|
||||
:weilbith/nvim-code-action-menu {:cmd ["CodeActionMenu"]}
|
||||
:weilbith/nvim-code-action-menu {}
|
||||
|
||||
:elkowar/trouble.nvim {:config #(require "dots.plugins.trouble")
|
||||
:cmd ["Trouble" "TroubleClose" "TroubleRefresh" "TroubleToggle"]}
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
:mapping {:<C-d> (cmp.mapping.scroll_docs -4)
|
||||
:<C-f> (cmp.mapping.scroll_docs 4)
|
||||
:<C-space> (cmp.mapping.complete)
|
||||
:<esc> #(do (cmp.mapping.close) (vim.cmd "stopinsert"))
|
||||
:<CR> (cmp.mapping.confirm {:select true})}
|
||||
:<esc> #(do (cmp.mapping.close) (vim.cmd "stopinsert"))}
|
||||
;:<CR> (cmp.mapping.confirm {:select true})}
|
||||
|
||||
:experimental {:custom_menu true}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
(module dots.plugins.lsp
|
||||
{autoload {a aniseed.core
|
||||
str aniseed.string
|
||||
lsp lspconfig
|
||||
lsp-configs lspconfig/configs
|
||||
utils dots.utils
|
||||
|
@ -70,6 +71,14 @@
|
|||
(init-lsp :html)
|
||||
(init-lsp :svelte)
|
||||
(init-lsp :elmls)
|
||||
|
||||
(init-lsp :powershell_es {:bundle_path "/home/leon/powershell"})
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
;(init-lsp :powershell_es {})
|
||||
;(init-lsp :clangd)
|
||||
;(init-lsp :ccls)
|
||||
|
||||
|
|
Loading…
Reference in a new issue