neovim

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a277b8af7aec0c5fde7aea59629d82f2af8f1429
parent 69d8ae997e744efd687af2f27af7fe434f3c778e
Author: bdmfegys@duck.com <bdmfegys@duck.com>
Date:   Wed,  1 May 2024 17:50:00 -0400

autostart.lua & plugins.lua: remove conform.nvim conform-mason.nvim

Diffstat:
Mlua/autostart.lua | 1-
Mlua/plugins.lua | 26--------------------------
2 files changed, 0 insertions(+), 27 deletions(-)

diff --git a/lua/autostart.lua b/lua/autostart.lua @@ -1,3 +1,2 @@ -- colorscheme require('pywal').setup() -require("mason-conform").setup() diff --git a/lua/plugins.lua b/lua/plugins.lua @@ -1,29 +1,4 @@ require("lazy").setup({ - { - "stevearc/conform.nvim", - event = { "VeryLazy" }, - cmd = { "ConformInfo" }, - opts = { - lang_to_ext = { - c = "c", - lua = "lua", - html = "html", - markdown = "md", - css = "css", - }, - formatters_by_ft = { - c = { "ast-grep" }, - lua = { "ast-grep" }, - html = { "ast-grep" }, - css = { "ast-grep" }, - markdown = { "mdformat" }, - }, - --format_on_save = { timeout_ms = 500, lsp_fallback = true }, - }, - init = function() - vim.o.formatexpr = "v:lua.require'conform'.formatexpr()" - end, - }, { "luukvbaal/nnn.nvim", config = true }, { "nvim-treesitter/nvim-treesitter", build = ":TSUpdate", event = "VeryLazy" }, { @@ -84,5 +59,4 @@ require("lazy").setup({ end end, }, - { "zapling/mason-conform.nvim" }, })