Move from utils.lua to their respective places | Format all files

This commit is contained in:
Akianonymus 2021-07-30 22:32:58 +05:30 committed by Galen Rowell
parent 5236893e5e
commit 7affb8cbfb
6 changed files with 11 additions and 18 deletions

View file

@ -109,7 +109,6 @@ vim.lsp.handlers["textDocument/publishDiagnostics"] =
},
signs = true,
underline = true,
-- set this to true if you want diagnostics to show in insert mode
update_in_insert = false
}

View file

@ -93,3 +93,6 @@ g.nvim_tree_bindings = {
{key = "q", cb = tree_cb("close")},
{key = "g?", cb = tree_cb("toggle_help")}
}
-- hide statusline when nvim tree is opened
vim.cmd [[au BufEnter,BufWinEnter,WinEnter,CmdwinEnter * if bufname('%') == "NvimTree" | set laststatus=0 | else | set laststatus=2 | endif]]