10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacVim-kaoriyaの設定

Last updated at Posted at 2012-07-09

###ヤンクをクリップボードにも入れる

.vimrc
set clipboard=unnamed,autoselect

できない場合は
vim --version | grep clipboard
+clipboardになっているか確認
(参考:http://d.hatena.ne.jp/sea_mountain/20110421/1303362772)

###クリップボードから貼付ける

.vimrc
noremap <C-v> "+p

###フルスクリーンモードで起動する

.vimrc
if has("gui_running")
    set fuoptions=maxvert,maxhorz
    au GUIEnter * set fullscreen
endif

###.gvimrcの設定

.gvimrc
if has('gui_macvim')
    set guifont=Monaco:h14
    set imdisable
    set fuoptions=maxvert,maxhorz
endif
set showtabline=2
set guioptions-=T
set background=dark
colorscheme desert
set cmdheight=2
10
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?