https://github.com/konojunya/vim-settings
https://github.com/konojunya/vim-settings
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/konojunya/vim-settings
- Owner: konojunya
- Created: 2016-11-08T12:03:07.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-08T12:12:36.000Z (over 8 years ago)
- Last Synced: 2025-04-06T04:13:06.896Z (20 days ago)
- Language: VimL
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vim settings
## Installation
[vim-plug](https://github.com/junegunn/vim-plug)
```
$ curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
````~/.vimrc`
```
if has('vim_starting')
set rtp+=~/.vim/plugged/vim-plug
if !isdirectory(expand('~/.vim/plugged/vim-plug'))
echo 'install vim-plug...'
call system('mkdir -p ~/.vim/plugged/vim-plug')
call system('git clone https://github.com/junegunn/vim-plug.git ~/.vim/plugged/vim-plug/autoload')
end
endifcall plug#begin('~/.vim/plugged')
" Vundle/NeoBundle と同じように
Plug 'junegunn/seoul256.vim'" コマンド実行時に読み込む (ツリー構成を表示するプラグイン)
Plug 'scrooloose/nerdtree', { 'on': ['NERDTreeToggle'] }" 指定したファイルタイプを開いたときに読み込む
Plug 'tpope/vim-fireplace', { 'for': ['clojure'] }" X | Y の時, X をインストールした後に Y をインストール
Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets'call plug#end()
```vimを開いて、コマンドモードで
`:PlugInstall`
で、vim-plugをインストールできる。
## 使い方
`ctrl + e` でツリーを開くことができる。
あとは[こちら](https://google.com)