Add autoformat and af hotkey

This commit is contained in:
Mark 2023-12-27 15:08:22 -05:00
parent 401003e42a
commit 19136f3577
3 changed files with 6 additions and 1 deletions

View file

@ -3,9 +3,10 @@
--
-- See the kickstart.nvim README for more information
vim.opt.colorcolumn = "80,100"
vim.opt.number = true
vim.opt.relativenumber = true
vim.opt.colorcolumn = "80,100"
vim.api.nvim_set_keymap('n', '<leader>cf', ':EslintFixAll<CR>:Neoformat<CR>', { noremap = true, silent = true })
return {}

View file

@ -0,0 +1,3 @@
return {
"sbdchd/neoformat"
}