tsuyoshicho / vimrc-reading

split vimrc from dotfile repository for reading
Creative Commons Zero v1.0 Universal
1 stars 0 forks source link

Note #21

Closed tsuyoshicho closed 4 years ago

tsuyoshicho commented 5 years ago

write memo for vimrc

tsuyoshicho commented 5 years ago

DoxygenToolkit year

echo g:V.import('DateTime').now().year()

install?

tsuyoshicho commented 5 years ago

install?

tsuyoshicho commented 5 years ago

see

efm langserver and lsp server's setting up

tsuyoshicho commented 5 years ago

note https://sy-base.com/myrobotics/vim/vim-transparent/

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

add?

tsuyoshicho commented 5 years ago

other

jasegment in comment ; wait mecab


mecab normal intall need

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

reviewdog need check natural document

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

see https://engineering.linecorp.com/ja/blog/mecab-ipadic-neologd-new-words-and-expressions/

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

デフォルトでサポートしてるファイルタイプなどのプラグインのオプションを詰める

see syntax - Vim日本語ドキュメント

tsuyoshicho commented 5 years ago
" コマンドラインで単語移動 {{{
cnoremap <c-b> <S-Left>
cnoremap <c-f> <S-Right>
cnoremap <c-a> <Home>
" }}}

in dotfiles/vimrc at 968b82dacd49282ffd97a4b8ddad9c0e0c8212ea · skanehira/dotfiles

tsuyoshicho commented 5 years ago

spell check info

tsuyoshicho commented 5 years ago

complete option

tsuyoshicho commented 5 years ago

need?

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

need fix bashrc/bash_profile with worker setting

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

add info

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago

Theme

tsuyoshicho commented 5 years ago

change or update?

tsuyoshicho commented 5 years ago
tsuyoshicho commented 5 years ago
tsuyoshicho commented 4 years ago

auto-git-diff の マッピング

tsuyoshicho commented 4 years ago

clap

tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago

And memolist tuning together.

tsuyoshicho commented 4 years ago

see え?君せっかく Python のバージョン管理に pyenv 使ってるのに Vim の補完はシステムライブラリ参照してるの? - Λlisue's blog

tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago

bash env value setup fixup

see below

  # PRE_PATH="${HOME}/bin"
  # POST_PATH="/opt/bin"

  PATH="${PRE_PATH+$PRE_PATH:}${PATH}${POST_PATH+:$POST_PATH}"
tsuyoshicho commented 4 years ago

from https://github.com/choplin/dotfiles/blob/master/_vimrc

  " gfを拡張
  Plug 'kana/vim-gf-user'
  " gf for git diff
  Plug 'kana/vim-gf-diff'

  Plug 'osyo-manga/vim-stargate', { 'for' : ['cpp'] }
  " Exコマンドをそれっぽく展開
  Plug 'thinca/vim-ambicmd'
  " vim-smartword : 単語移動がスマートな感じで
  Plug 'kana/vim-smartword'

  " リポジトリのrootに移動
  Plug 'airblade/vim-rooter'

" :QuickRun 時に quickfix の中身をクリアする
" こうしておかないと quickfix の中身が残ったままになってしまうため
let s:hook = {
\   "name" : "clear_quickfix",
\   "kind" : "hook",
\}

function! s:hook.on_normalized(session, context)
    call setqflist([])
endfunction

call quickrun#module#register(s:hook, 1)
unlet s:hook
tsuyoshicho commented 4 years ago

from mattn setting https://mattn.kaoriya.net/software/vim/20191231213507.htm

Plug 'hrsh7th/vim-vsnip'
Plug 'hrsh7th/vim-vsnip-integ'
tsuyoshicho commented 4 years ago
tsuyoshicho commented 4 years ago