4 files changed,
4 insertions(+),
35 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2022-08-16 00:04:15 +0300
Parent:
6775e11
jump to
| M | lua/configs/cmp.lua |
| D | lua/configs/neorg.lua |
| M | lua/core/keymaps.lua |
| M | lua/plugins.lua |
M
lua/configs/cmp.lua
@@ -108,11 +108,10 @@ end
end, }, sources = { - { name = "neorg", group_index = 1 }, - { name = "nvim_lsp", group_index = 2, max_item_count = 8 }, - { name = "buffer", group_index = 2, max_item_count = 4 }, - { name = "luasnip", group_index = 2, max_item_count = 3 }, - { name = "path", group_index = 2, max_item_count = 2 }, + { name = "nvim_lsp", max_item_count = 8 }, + { name = "buffer", max_item_count = 4 }, + { name = "luasnip", max_item_count = 3 }, + { name = "path", max_item_count = 2 }, }, experimental = { ghost_text = true }, }
D
@@ -1,23 +0,0 @@
-require("neorg").setup { - load = { - ["core.defaults"] = {}, - ["core.norg.concealer"] = {}, - ["core.norg.completion"] = { config = { engine = "nvim-cmp" } }, - ["core.norg.journal"] = { config = { workspace = "self" } }, - ["core.keybinds"] = { - config = { - default_keybinds = true, - neorg_leader = ",", - }, - }, - ["core.norg.dirman"] = { - config = { - workspaces = { - prog = "~/Notes/Programing", - study = "~/Notes/Study", - my = "~/Notes/My", - }, - }, - }, - }, -}
M
lua/core/keymaps.lua
@@ -42,7 +42,6 @@
-- plugins map("n", "<leader>e", "<cmd>NvimTreeToggle<cr>") map("n", "<leader>ps", "<cmd>PackerSync<cr>") -map("n", "<leader>n", "<cmd>Neorg<cr>") map("n", "<leader>gg", "<cmd>Neogit<cr>") -- telescope
M
lua/plugins.lua
@@ -95,12 +95,6 @@ { "nvim-neotest/neotest-plenary", module = "neotest-plenary" },
}, } - use { -- notes - "nvim-neorg/neorg", - requires = "nvim-treesitter/nvim-treesitter", - config = u.get.config "neorg", - } - -- lsp & completion use { "neovim/nvim-lspconfig",