Format neovim config with stylua using new stylua.toml config

This commit is contained in:
2022-01-22 12:10:28 +03:00
parent 1a29e2858a
commit 8b75b3b1ea
10 changed files with 324 additions and 317 deletions

View File

@@ -1,9 +1,9 @@
function open_terminal(vertically)
vertically = vertically or false
vertically = vertically or false
if vertically then
vim.cmd(":vs term://bash")
else
vim.cmd(":split term://bash")
end
if vertically then
vim.cmd(":vs term://bash")
else
vim.cmd(":split term://bash")
end
end