First Commit
This is a first dotfiles config. I think I have a lot more to add tho...
This commit is contained in:
23
vim/.vim/compiler/esp.vim
Normal file
23
vim/.vim/compiler/esp.vim
Normal file
@ -0,0 +1,23 @@
|
||||
" Vim compiler file modified for llvm esp
|
||||
" Compiler: llvm
|
||||
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||
" Latest Revision: 2023-10-19
|
||||
" forking by tonitch
|
||||
|
||||
if exists("current_compiler")
|
||||
finish
|
||||
endif
|
||||
let current_compiler = "esp"
|
||||
|
||||
let s:cpo_save = &cpo
|
||||
set cpo&vim
|
||||
|
||||
let g:ycm_clangd_binary_path="/opt/llvm-esp/esp-clang/bin/clangd"
|
||||
YcmRestartServer
|
||||
let &makeprg="idf.py -C .."
|
||||
|
||||
"Should do a CompilerSet One day
|
||||
|
||||
let &cpo = s:cpo_save
|
||||
unlet s:cpo_save
|
||||
|
Reference in New Issue
Block a user