all repos

init.lua @ ba600c74ecd45936886d9b0449d3fedf44f4c892

my nvim config
6 files changed, 2 insertions(+), 27 deletions(-)
remove clojure setup
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-10-27 15:46:20 +0300
Parent: 028db95
M lua/configs/autopairs.lua

@@ -1,4 +1,4 @@

require("nvim-autopairs").setup { check_ts = true, - disable_filetype = { "clojure", "TelescopePrompt" }, + disable_filetype = { "TelescopePrompt" }, }
D

@@ -1,3 +0,0 @@

-vim.g["conjure#mapping#doc_word"] = false -vim.g["conjure#client#clojure#nrepl#eval#auto_require"] = false -vim.g["conjure#client#clojure#nrepl#connection#auto_repl#enabled"] = false
M lua/configs/lsp/attach.lua

@@ -9,9 +9,7 @@

return { common = function(client, bufnr) vim.api.nvim_buf_set_option(bufnr, "omnifunc", "v:lua.vim.lsp.omnifunc") - if client.name ~= "clojure_lsp" then - client.server_capabilities.documentFormattingProvider = false - end + client.server_capabilities.documentFormattingProvider = false map("K", vim.lsp.buf.hover) map("gd", "<cmd>Telescope lsp_definitions<cr>")
M lua/configs/lsp/servers.lua

@@ -1,6 +1,5 @@

return { tsserver = {}, - clojure_lsp = {}, gopls = { settings = { gopls = {
M lua/configs/project.lua

@@ -8,6 +8,5 @@ "go.mod",

"pyproject.toml", "Cargo.toml", "deps.edn", - "bb.edn", }, }
M lua/plugins.lua

@@ -98,23 +98,6 @@ keys = { "f", "F", ",f", ",F" },

config = u.get.config "hop", } - -- '(lisp) - use { - "Olical/conjure", - ft = { "clojure", "fennel" }, - config = u.get.config "conjure", - branch = "develop", - } - - use { - "guns/vim-sexp", - after = "conjure", - requires = { - "tpope/vim-sexp-mappings-for-regular-people", - after = "vim-sexp", - }, - } - use { -- test runner "nvim-neotest/neotest", config = u.get.config "neotest",

@@ -172,7 +155,6 @@ { "hrsh7th/cmp-buffer", after = "nvim-cmp" },

{ "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" }, { "hrsh7th/cmp-emoji", after = "nvim-cmp" }, { "hrsh7th/cmp-path", after = "nvim-cmp" }, - { "PaterJason/cmp-conjure", after = "conjure" }, { "hrsh7th/cmp-nvim-lsp", module = "cmp_nvim_lsp" }, }, }