Skip to content

Instantly share code, notes, and snippets.

@JSchrtke
JSchrtke / init.vim
Created February 8, 2022 14:13
which-key.nvim mappings
" ### Configure which-key.nvim/mappings ###
" quickly navigate quickfix entries
nnoremap <C-n> :cnext<CR>
nnoremap <C-p> :cprevious<CR>
nnoremap <C-e> :lua require("telescope").extensions.file_browser.file_browser(require("telescope.themes").get_ivy())<CR>
lua << EOF
local wk = require("which-key")
@JSchrtke
JSchrtke / init.vim
Last active February 3, 2022 11:32
nvim rust-tools + lsp-installer setup
call plug#begin('~/.vim/plugged')
Plug 'neovim/nvim-lspconfig', { 'commit': '06e54cdfa38c2129bc555b6ee77d4086c3a74e5c' }
Plug 'williamboman/nvim-lsp-installer', { 'commit': '57398ee78d055b3fc566092c1a09ca8df9df1d71' }
Plug 'simrat39/rust-tools.nvim', { 'commit': '7b4d155dd47e211ee661cbb4c7969b245f768edb' }
call plug#end()
lua << EOF