all repos

init.lua @ 50fa555

my nvim config
4 files changed, 1 insertions(+), 20 deletions(-)
updated note map; deleted conjure and parinfer
Author: neoteny ss2316544@gmail.com
Committed at: 2022-02-03 20:30:04 +0200
Parent: 7502ee5
M lua/plugin.lua

@@ -10,9 +10,6 @@ use { "~/code/gopher.nvim", ft = "go" }

use { "folke/lua-dev.nvim", ft = "lua", after = "nvim-lspconfig", config = get_config "lua-dev" } use { "metakirby5/codi.vim", cmd = "Codi" } - use { "Olical/conjure", ft = "clojure", config = get_config "plugin.conjure" } - use { "eraserhd/parinfer-rust", run = "cargo build --release", after = "conjure" } - use { "TimUntersberger/neogit", cmd = "Neogit", config = get_config "neogit" } use { "folke/which-key.nvim", config = get_config "plugin.whichkey" } use { "kyazdani42/nvim-tree.lua", cmd = "NvimTreeToggle", config = get_config "plugin.nvimtree" }

@@ -79,7 +76,6 @@ { "hrsh7th/cmp-nvim-lsp", module = "cmp_nvim_lsp" },

{ "hrsh7th/cmp-buffer", after = "nvim-cmp" }, { "hrsh7th/cmp-path", after = "nvim-cmp" }, { "hrsh7th/cmp-cmdline", after = "nvim-cmp" }, - { "PaterJason/cmp-conjure", after = "conjure" }, { "saadparwaiz1/cmp_luasnip", after = "nvim-cmp" }, { "L3MON4D3/LuaSnip", module = "luasnip" }, { "rafamadriz/friendly-snippets", after = "nvim-cmp" },
M lua/plugin/cmp.lua

@@ -80,7 +80,6 @@ { name = "nvim_lua", max_item_count = 5 },

{ name = "nvim_lsp", max_item_count = 8 }, { name = "buffer", max_item_count = 5, keyword_length = 4 }, { name = "luasnip", max_item_count = 4, keyword_length = 2 }, - { name = "conjure", max_item_count = 4 }, { name = "path", max_item_count = 2 }, }, experimental = {
D

@@ -1,14 +0,0 @@

-local M = {} - -function M.setup() - vim.g["conjure#mapping#doc_word"] = "K" - vim.g["conjure#client#clojure#nrepl#eval#auto_require"] = false - vim.g["conjure#client#clojure#nrepl#connection#auto_repl#enabled"] = false - vim.g["conjure#log#botright"] = true - vim.g["conjure#extract#tree_sitter#enabled"] = true - vim.g["conjure#eval#result_register"] = "*" - vim.g["g:conjure#log#jump_to_latest#cursor_scroll_position"] = "bottom" -end - - -return M
M lua/plugin/whichkey.lua

@@ -57,7 +57,7 @@ w = { "<cmd>write!<cr>", "Save file" },

q = { "<cmd>quit!<cr>", "Quit" }, c = { "<cmd>bdelete<cr>", "Close buffer" }, h = { "<cmd>nohlsearch<cr>", "No hl" }, - n = { "<cmd>vs | e! /tmp/note.md<cr>", "Note" }, + n = { "<cmd>e! /tmp/note.md<cr>", "Note" }, s = { name = "telescope", t = { "<cmd>Telescope live_grep<cr>", "Live grep" },