Skip to content

Instantly share code, notes, and snippets.

@alvalea
Created May 25, 2023 12:22
Show Gist options
  • Save alvalea/0f715ef2d71acc63df068dc578ec06a4 to your computer and use it in GitHub Desktop.
Save alvalea/0f715ef2d71acc63df068dc578ec06a4 to your computer and use it in GitHub Desktop.
[TerminalProgrammer] vim - IDE
syntax enable
filetype plugin on
let mapleader=" "
set cursorline
set makeprg=nmake
set errorformat=%f(%l):%m
autocmd FileType qf nnoremap <buffer> p :lprev<CR><C-w>w
autocmd FileType qf nnoremap <buffer> n :lnext<CR><C-w>w
command! MAKE lgetexpr system(&makeprg) | lopen
nnoremap <leader>m :MAKE<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment