diff --git a/.config/nvim/lua/plugins/alpha.lua b/.config/nvim/lua/plugins/alpha.lua index 9b81fbe..14cb1df 100644 --- a/.config/nvim/lua/plugins/alpha.lua +++ b/.config/nvim/lua/plugins/alpha.lua @@ -17,12 +17,6 @@ return { [[ ]], } - local neovim_decimal = { - [[ ]], - [[ 78 101 111 86 105 109 ]], - [[ ]], - } - -- Set the ASCII art dashboard.section.header.val = neovim_lean diff --git a/.config/nvim/lua/plugins/avante.lua b/.config/nvim/lua/plugins/avante.lua index 77c5a5b..c475407 100644 --- a/.config/nvim/lua/plugins/avante.lua +++ b/.config/nvim/lua/plugins/avante.lua @@ -30,13 +30,13 @@ return { }, }, }, - { - -- Make sure to set this up properly if you have lazy=true - 'MeanderingProgrammer/render-markdown.nvim', - opts = { - file_types = { "markdown", "Avante" }, - }, - ft = { "markdown", "Avante" }, - }, + -- { + -- -- Make sure to set this up properly if you have lazy=true + -- 'MeanderingProgrammer/render-markdown.nvim', + -- opts = { + -- file_types = { "markdown", "Avante" }, + -- }, + -- ft = { "markdown", "Avante" }, + -- }, }, } diff --git a/.config/nvim/lua/plugins/formatting.lua b/.config/nvim/lua/plugins/conform.lua similarity index 100% rename from .config/nvim/lua/plugins/formatting.lua rename to .config/nvim/lua/plugins/conform.lua diff --git a/.config/nvim/lua/plugins/nvim-treesitter.lua b/.config/nvim/lua/plugins/nvim-treesitter.lua index 08c6bd6..3fa2b64 100644 --- a/.config/nvim/lua/plugins/nvim-treesitter.lua +++ b/.config/nvim/lua/plugins/nvim-treesitter.lua @@ -81,8 +81,10 @@ return { auto_install = true, highlight = { enable = true, + additional_vim_regex_highlighting = false, disable = { "latex" }, }, + conceal = false, indent = { enable = true }, autotag = { enable = true }, textobjects = { diff --git a/.config/nvim/lua/plugins/scissors.lua b/.config/nvim/lua/plugins/scissors.lua deleted file mode 100644 index 40a4791..0000000 --- a/.config/nvim/lua/plugins/scissors.lua +++ /dev/null @@ -1,9 +0,0 @@ -return { - "chrisgrieser/nvim-scissors", - event = "VeryLazy", - lazy = true, - dependencies = "nvim-telescope/telescope.nvim", - opts = { - snippetDir = "~/.config/nvim/snippets", - }, -} diff --git a/.config/nvim/lua/plugins/telescope.lua b/.config/nvim/lua/plugins/telescope.lua index d358067..f8f0fb1 100644 --- a/.config/nvim/lua/plugins/telescope.lua +++ b/.config/nvim/lua/plugins/telescope.lua @@ -2,10 +2,10 @@ return { "nvim-telescope/telescope.nvim", dependencies = { "nvim-lua/plenary.nvim", - { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, "nvim-tree/nvim-web-devicons", "debugloop/telescope-undo.nvim", "nvim-telescope/telescope-ui-select.nvim", + { "nvim-telescope/telescope-fzf-native.nvim", build = "make" }, }, config = function() local telescope = require("telescope") diff --git a/.config/nvim/lua/plugins/telescope/multigrep.lua b/.config/nvim/lua/plugins/telescope/multigrep.lua index 7e945dc..3ad77f6 100644 --- a/.config/nvim/lua/plugins/telescope/multigrep.lua +++ b/.config/nvim/lua/plugins/telescope/multigrep.lua @@ -11,7 +11,6 @@ M.live_multgrep = function (opts) local finder = finders.new_async_job({ command_generator = function (prompt) - print(prompt) if not prompt or prompt == "" then return nil end diff --git a/.config/nvim/lua/plugins/undotree.lua b/.config/nvim/lua/plugins/undotree.lua index 3e09bb3..d8569a5 100644 --- a/.config/nvim/lua/plugins/undotree.lua +++ b/.config/nvim/lua/plugins/undotree.lua @@ -1,18 +1,18 @@ return { - "mbbill/undotree", + "mbbill/undotree", event = "VeryLazy", - config = function() - if vim.fn.has("persistent_undo") == 0 then - return - end + config = function() + if vim.fn.has("persistent_undo") == 0 then + return + end - local target_path = vim.fn.expand("~/.cache/nvim/undodir/") + local target_path = vim.fn.expand("~/.cache/nvim/undodir/") - if vim.fn.isdirectory(target_path) == 0 then - vim.fn.mkdir(target_path, "p", 0700) - end + if vim.fn.isdirectory(target_path) == 0 then + vim.fn.mkdir(target_path, "p", "0700") + end - vim.opt.undodir = target_path - vim.opt.undofile = true - end, + vim.opt.undodir = target_path + vim.opt.undofile = true + end, }