Reformat all neovim configuration files with stylua

This commit is contained in:
Marko Korhonen 2022-10-26 14:08:20 +03:00
parent 2fb9297281
commit 16e59402c7
16 changed files with 414 additions and 352 deletions

View file

@ -1,13 +1,13 @@
return function()
require("nvim-tree").setup { -- BEGIN_DEFAULT_OPTS
require("nvim-tree").setup({ -- BEGIN_DEFAULT_OPTS
diagnostics = {
enable = true,
show_on_dirs = true,
},
renderer = {
highlight_git = true
}
}
highlight_git = true,
},
})
-- Open/close with alt-o
vim.keymap.set('n', '<M-o>', vim.cmd.NvimTreeToggle)
vim.keymap.set("n", "<M-o>", vim.cmd.NvimTreeToggle)
end