diff options
author | abzcoding <[email protected]> | 2021-07-25 16:27:48 +0430 |
---|---|---|
committer | abzcoding <[email protected]> | 2021-07-25 16:27:48 +0430 |
commit | 739784e43cdec5a69585b9845fccd27981819ade (patch) | |
tree | 60f1df494e26eecd432ed110f09d340b8fc659d2 /lua/core/autocmds.lua | |
parent | e37a511abc1f6d6c6925719427f9890423f007f6 (diff) |
fix formatting according to stylua
Diffstat (limited to 'lua/core/autocmds.lua')
-rw-r--r-- | lua/core/autocmds.lua | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lua/core/autocmds.lua b/lua/core/autocmds.lua index 26a5cde8..f4cb4369 100644 --- a/lua/core/autocmds.lua +++ b/lua/core/autocmds.lua @@ -1,6 +1,5 @@ local autocommands = {} - lvim.autocommands = { _general_settings = { { @@ -28,14 +27,11 @@ lvim.autocommands = { "*", "setlocal formatoptions-=c formatoptions-=r formatoptions-=o", }, - { "BufWritePost", - "lv-config.lua", - "lua require('lv-utils').reload_lv_config()" - }, + { "BufWritePost", "lv-config.lua", "lua require('lv-utils').reload_lv_config()" }, { "FileType", "qf", - "set nobuflisted" + "set nobuflisted", }, -- { "VimLeavePre", "*", "set title set titleold=" }, }, @@ -70,7 +66,7 @@ lvim.autocommands = { -- will cause split windows to be resized evenly if main window is resized { "BufWritePost", "plugins.lua", "PackerCompile" }, }, - + -- _fterm_lazygit = { -- -- will cause esc key to exit lazy git -- {"TermEnter", "*", "call LazyGitNativation()"} @@ -107,6 +103,4 @@ function autocommands.define_augroups(definitions) -- {{{1 end end - - return autocommands |