Improve git aliases

This commit is contained in:
Dave Gallant
2021-12-22 22:40:16 -05:00
parent 46b6d6e212
commit b6f0c406ed
3 changed files with 8 additions and 7 deletions

View File

@@ -70,10 +70,6 @@ vim.api.nvim_set_keymap(
{ silent = true, noremap = true }
)
--Set colorscheme
vim.o.termguicolors = true
vim.cmd([[colorscheme kanagawa]])
-- Use tab as trigger keys
vim.cmd([[imap <tab> <Plug>(completion_smart_tab)]])
vim.cmd([[imap <s-tab> <Plug>(completion_smart_s_tab)]])
@@ -304,3 +300,7 @@ vim.g.syntastic_check_on_wq = 0
-- completion-nvim
vim.cmd([[autocmd BufEnter * lua require'completion'.on_attach()]])
--Set colorscheme
vim.o.termguicolors = true
vim.cmd([[colorscheme kanagawa]])