From 99ef6ae8e19cdee577a9f4c52b56598d51f15ac4 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 18 Feb 2024 16:40:19 +0000 Subject: [PATCH] nvim: tidy up plugins --- nvim/lua/thomas/core/options.lua | 2 +- nvim/lua/thomas/plugins-setup.lua | 13 ++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/nvim/lua/thomas/core/options.lua b/nvim/lua/thomas/core/options.lua index 16df6a8..7b56d55 100644 --- a/nvim/lua/thomas/core/options.lua +++ b/nvim/lua/thomas/core/options.lua @@ -24,5 +24,5 @@ opt.termguicolors = true opt.wrap = false opt.formatoptions = "cro" opt.backspace = "indent,eol,start" - +opt.conceallevel = 1 vim.notify = require("notify") diff --git a/nvim/lua/thomas/plugins-setup.lua b/nvim/lua/thomas/plugins-setup.lua index 14934db..e2e49d9 100644 --- a/nvim/lua/thomas/plugins-setup.lua +++ b/nvim/lua/thomas/plugins-setup.lua @@ -31,14 +31,13 @@ return packer.startup(function(use) -- packer can manage itself use("wbthomason/packer.nvim") - use({ - "aspeddro/pandoc.nvim", - config = function() - require("pandoc").setup() - end, - }) + -- use({ + -- "aspeddro/pandoc.nvim", + -- config = function() + -- require("pandoc").setup() + -- end, + -- }) use({ "folke/noice.nvim", requires = { "MunifTanjim/nui.nvim", "rcarriga/nvim-notify" } }) - use({ "epwalsh/obsidian.nvim", requires = { "nvim-lua/plenary.nvim" } }) use("ellisonleao/gruvbox.nvim") use("sainnhe/gruvbox-material")