summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fnl/plugins/cmp.fnl4
-rw-r--r--fnl/plugins/lsp/mason-lspconfig.fnl5
-rw-r--r--fnl/settings/options.fnl1
3 files changed, 5 insertions, 5 deletions
diff --git a/fnl/plugins/cmp.fnl b/fnl/plugins/cmp.fnl
index 1eb2e9e..a979633 100644
--- a/fnl/plugins/cmp.fnl
+++ b/fnl/plugins/cmp.fnl
@@ -3,8 +3,8 @@
(local opts {:keymap {:preset :default}
:appearance {:use_nvim_cmp_as_default false
:nerd_font_variant :mono}
- :completion {:menu {:scrollbar false :border :none}
- :documentation {:window {:border :none
+ :completion {:menu {:scrollbar false :border :single}
+ :documentation {:window {:border :single
:scrollbar false}}}
:signature {:enabled false :window {:scrollbar false}}
:sources {:default [:lsp :path :snippets :buffer :dadbod]
diff --git a/fnl/plugins/lsp/mason-lspconfig.fnl b/fnl/plugins/lsp/mason-lspconfig.fnl
index 429e948..48ea0b5 100644
--- a/fnl/plugins/lsp/mason-lspconfig.fnl
+++ b/fnl/plugins/lsp/mason-lspconfig.fnl
@@ -2,9 +2,8 @@
;; setup hooks for client configurations.
(local textDocument-handlers
- {:textDocument/hover (vim.lsp.with vim.lsp.handlers.hover {:border :single})
- :textDocument/signatureHelp (vim.lsp.with vim.lsp.handlers.signature_help
- {:border :single})})
+ {:textDocument/hover (vim.lsp.with vim.lsp.handlers.hover)
+ :textDocument/signatureHelp (vim.lsp.with vim.lsp.handlers.signature_help)})
(λ capabilities []
(let [blink-cmp (require :blink.cmp)]
diff --git a/fnl/settings/options.fnl b/fnl/settings/options.fnl
index 99f3e5b..c72d415 100644
--- a/fnl/settings/options.fnl
+++ b/fnl/settings/options.fnl
@@ -81,6 +81,7 @@
:guifont "monospace:h17"
:splitkeep :screen
:inccommand :split
+ :winborder :single
:shada ["'10" :<0 :s10 :h]})
(each [k v (pairs opts)]