This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filetype off | |
filetype plugin indent off | |
if isdirectory(expand($PYENV_PATH)) | |
let g:python_host_prog = $PYENV_PATH . '/versions/neovim2/bin/python' | |
let g:python3_host_prog = $PYENV_PATH . '/versions/neovim3/bin/python' | |
endif | |
if isdirectory(expand($ANYENV_PATH)) | |
let g:python_host_prog = $ANYENV_PATH . '/envs/pyenv/versions/neovim2/bin/python' | |
let g:python3_host_prog = $ANYENV_PATH . '/envs/pyenv/versions/neovim3/bin/python' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
command! -bar TermPrevLspDef call s:termprev_lsp_def() | |
command! -bar TermPrevLspDefFloat call s:termprev_lsp_def_float() | |
" ############################################################################################## | |
" # command roots | |
" ############################################################################################## | |
let s:termprev_bufffer = 'new' | |
function! s:termprev_lsp_def() abort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Enable local cvimrc | |
let configpath = '~/.cvimrc' | |
" Settings | |
set nohud | |
set nosmoothscroll | |
set noautofocus | |
let locale = "jp" | |
" Leader key mapping | |
let mapleader = "," | |
" Mapping on nomal mode |