diff options
author | sefidel <contact@sefidel.net> | 2022-02-26 21:46:37 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-02-26 21:46:37 +0900 |
commit | 19c7b373e1ad7d7a40901a34b354ff1d6623087d (patch) | |
tree | 83ee922ed2956c5b287b5bc30d5fc12ddca2da4d /fnl/nvrc/packs | |
parent | 7b0fe9c4eadd0f8333591c97bb8ba607e1fa33d7 (diff) | |
download | nvimrc-19c7b373e1ad7d7a40901a34b354ff1d6623087d.tar.gz nvimrc-19c7b373e1ad7d7a40901a34b354ff1d6623087d.zip |
feat(pack): lsp_signature -> cmp-nvim-lsp-signature-help
Diffstat (limited to 'fnl/nvrc/packs')
-rw-r--r-- | fnl/nvrc/packs/cmp.fnl | 3 | ||||
-rw-r--r-- | fnl/nvrc/packs/lsp_signature.fnl | 15 |
2 files changed, 2 insertions, 16 deletions
diff --git a/fnl/nvrc/packs/cmp.fnl b/fnl/nvrc/packs/cmp.fnl index 0720148..0f36592 100644 --- a/fnl/nvrc/packs/cmp.fnl +++ b/fnl/nvrc/packs/cmp.fnl @@ -53,4 +53,5 @@ :<S-Tab> (fn [fallback] (if (cmp.visible) (cmp.select_next_item)"") (fallback))} - :sources {1 {:name :nvim_lsp}}}) + :sources [{:name :nvim_lsp} + {:name :nvim_lsp_signature_help}]}) diff --git a/fnl/nvrc/packs/lsp_signature.fnl b/fnl/nvrc/packs/lsp_signature.fnl deleted file mode 100644 index b14a374..0000000 --- a/fnl/nvrc/packs/lsp_signature.fnl +++ /dev/null @@ -1,15 +0,0 @@ -(local {: setup} (require :lsp_signature)) - -(setup {:bind true - :doc_lines 0 - :floating_window true - :fix_pos true - :hint_enable true - :hint_scheme :String - :hint_prefix "(i) " - :hi_parameter :Search - :max_height 22 - :max_width 120 - :handler_opts {:border :single} - :zindex 200 - :padding ""}) |