Replies: 1 comment 2 replies
-
| Hey @ccidral, have you made any progress on this? Im starting to try to set it up but I still have no idea where to start | 
Beta Was this translation helpful? Give feedback.
                  
                    2 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to set up Clojure completions via Conjure with
blink.compatbut I'm not getting it right for some reason. Please see my configuration below. When I start typing something in a.cljfile I see completions for the builtin Clojure functions, but it doesn't show any namespaces, and it also doesn't show completions for functions under any namespace. For example, suppose you do(:require [ring.adapter.jetty]), when you typering.adapter.jetty/it doesn't show completions for the functions under thering.adapter.jettynamespace.In case you were able to correctly set it up, please share your configuration, I'd appreciate it. Thanks.
{ "saghen/blink.compat", version = "*", lazy = true, opts = {}, }, { "saghen/blink.cmp", dependencies = { "rafamadriz/friendly-snippets", "PaterJason/cmp-conjure", "saghen/blink.compat", }, version = "*", ---@module 'blink.cmp' ---@type blink.cmp.Config opts = { appearance = { use_nvim_cmp_as_default = false, nerd_font_variant = "mono", }, sources = { default = { "lsp", "path", "snippets", "buffer" }, providers = { conjure = { name = "conjure", module = "blink.compat.source", }, }, }, signature = { enabled = false }, }, opts_extend = { "sources.default" }, }Beta Was this translation helpful? Give feedback.
All reactions