diff options
author | Abouzar Parvan <[email protected]> | 2021-07-10 22:48:28 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-10 14:18:28 -0400 |
commit | 0f7c876e93bdf42337257e70b5c9c9039a40bb47 (patch) | |
tree | fd6794b949c2a0fd7dc7bef25b8b998b288de145 /lua/plugins.lua | |
parent | 50202efd0d409e51d7a0b09d8c923482e7488351 (diff) |
WIP: using formatter.nvim instead of neoformat (#781)
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index d476f01c..779491db 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -75,11 +75,11 @@ return require("packer").startup(function(use) -- Treesitter use { "nvim-treesitter/nvim-treesitter" } - -- Neoformat + -- Formatter.nvim use { - "sbdchd/neoformat", + "mhartington/formatter.nvim", config = function() - require "lv-neoformat" + require "lv-formatter" end, event = "BufRead", } |