Add efm to nvim, update vscode, zsh

This commit is contained in:
Smirnov Alexander 2021-06-21 19:44:12 +03:00
parent 093639a28a
commit fef35c3ef0
21 changed files with 169 additions and 129 deletions

View file

@ -1,15 +1,28 @@
nno <C-s> :w<cr>
nno <C-p> :GFiles<cr>
nno <space> :noh<cr>
nno <leader>t :Term<cr>
nno <leader>e :NvimTreeToggle<cr>
nno <leader>; :Telescope fd<cr>
nno <leader>: :Telescope git_files<cr>
nno <leader>g :Neogit<cr>
nno <leader>; :Files<cr>
nno <leader>d :Neogit<cr>
" Buffer
nno <leader>j :bn<cr>
nno <leader>k :bp<cr>
" Compe
ino <expr> <tab> pumvisible() ? "\<C-n>" : "\<tab>"
ino <expr> <s-tab> pumvisible() ? "\<C-p>" : "\<tab>"
ino <expr> <cr> compe#confirm('<CR>')
ino <expr> <c-space> compe#complete()
nno sr :lua vim.lsp.buf.rename()<cr>
nno sh :lua vim.lsp.buf.hover()<cr>
nno sd :lua vim.lsp.buf.definition()<cr>
nno sa :lua vim.lsp.buf.code_action()<cr>
nno si :lua vim.lsp.buf.implementation()<cr>
nno sf :lua vim.lsp.buf.formatting()
nno sR :lua vim.lsp.buf.references()<CR>
" Split
nno <C-h> :winc h<cr>
nno <C-j> :winc j<cr>