-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
70 additions
and
70 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
source $MYVIMDIR/conf/rc/mappings.vim | ||
source $VIMCONF/conf/rc/mappings.vim |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[[plugins]] | ||
repo = 'neoclide/coc.nvim' | ||
hook_add = ''' | ||
let g:coc_config_home = '$MYVIMDIR' | ||
let g:coc_config_home = '$VIMCONF' | ||
" L<toml-ddu_source_lsp> | ||
let g:ddu_source_lsp_clientName = 'coc.nvim' | ||
''' |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
source $MYVIMDIR/conf/rc/colors/def/common/transparent.vim | ||
source $VIMCONF/conf/rc/colors/def/common/transparent.vim | ||
function s:autocmd() abort | ||
hi Comment guifg=white gui=undercurl | ||
endfunction | ||
autocmd persistent_colorscheme ColorScheme catppuccin-mocha call s:autocmd() | ||
source $MYVIMDIR/conf/rc/colors/def/catppuccin-mocha.vim | ||
source $VIMCONF/conf/rc/colors/def/catppuccin-mocha.vim |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
" 複数イベントを定義すると個別にonce適用されるので全部ModeChanged使う | ||
autocmd vimrc ModeChanged *:[ic]* ++once call vimrc#inline#load('$MYVIMDIR/conf/rc/mode/ic/**/*.vim') | ||
autocmd vimrc ModeChanged *:*[ovV\x16]* ++once call vimrc#inline#load('$MYVIMDIR/conf/rc/mode/ov/**/*.vim') | ||
autocmd vimrc ModeChanged *:[ic]* ++once call vimrc#inline#load('$VIMCONF/conf/rc/mode/ic/**/*.vim') | ||
autocmd vimrc ModeChanged *:*[ovV\x16]* ++once call vimrc#inline#load('$VIMCONF/conf/rc/mode/ov/**/*.vim') | ||
if has('nvim') | ||
autocmd vimrc TermOpen * ++once call vimrc#inline#load('$MYVIMDIR/conf/rc/mode/t/**/*.vim') | ||
autocmd vimrc TermOpen * ++once call vimrc#inline#load('$VIMCONF/conf/rc/mode/t/**/*.vim') | ||
else | ||
autocmd vimrc TerminalOpen * ++once call vimrc#inline#load('$MYVIMDIR/conf/rc/mode/t/**/*.vim') | ||
autocmd vimrc TerminalOpen * ++once call vimrc#inline#load('$VIMCONF/conf/rc/mode/t/**/*.vim') | ||
endif |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
autocmd vimrc CmdUndefined * ++once source $MYVIMDIR/conf/rc/on_autocmd/cmd_undefined.vim | ||
autocmd vimrc CmdUndefined * ++once source $VIMCONF/conf/rc/on_autocmd/cmd_undefined.vim |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
["coc.nvim"] | ||
script = '$MYVIMDIR/script/build/build/coc.sh' | ||
script = '$VIMCONF/script/build/build/coc.sh' | ||
|
||
[deno_std] | ||
script = '$MYVIMDIR/script/build/build/deno_std.ts' | ||
script = '$VIMCONF/script/build/build/deno_std.ts' | ||
|
||
["deno-denops-lsputil"] | ||
script = '$MYVIMDIR/script/build/build/importmap-expand.sh' | ||
script = '$VIMCONF/script/build/build/importmap-expand.sh' | ||
|
||
["deno-denops-std"] | ||
script = '$MYVIMDIR/script/build/build/importmap-expand.sh' | ||
script = '$VIMCONF/script/build/build/importmap-expand.sh' | ||
|
||
["telescope-fzf-native.nvim"] | ||
script = '$MYVIMDIR/script/build/build/telescope-fzf-native.sh' | ||
script = '$VIMCONF/script/build/build/telescope-fzf-native.sh' | ||
|
||
[tree-sitter-unifieddiff] | ||
script = '$MYVIMDIR/script/build/build/treesitter/unifieddiff.sh' | ||
script = '$VIMCONF/script/build/build/treesitter/unifieddiff.sh' | ||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
call vimrc#denops_loader#load('$MYVIMDIR/script/gitupdate/dpp_dump.ts'->expand(), v:true) | ||
let s:shot = vimrc#denops_loader#load('$MYVIMDIR/script/gitupdate/snap/dps_shot.ts'->expand(), v:true) | ||
call denops#request(s:shot, 'run', [['$MYVIMDIR/script/gitupdate/tasks.json'->expand()], '/data/vim/snapshot']) | ||
call vimrc#denops_loader#load('$VIMCONF/script/gitupdate/dpp_dump.ts'->expand(), v:true) | ||
let s:shot = vimrc#denops_loader#load('$VIMCONF/script/gitupdate/snap/dps_shot.ts'->expand(), v:true) | ||
call denops#request(s:shot, 'run', [['$VIMCONF/script/gitupdate/tasks.json'->expand()], '/data/vim/snapshot']) |
This file contains 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
Oops, something went wrong.