咲-Saki- キャラクター誕生日カレンダーをつくりました。
共有したい方は何らかの方法でGmailのアドレスをください。
2013年12月18日水曜日
2013年12月17日火曜日
.vimrcをいじったのでメモ
いままで人が作った.vimrcをちょっといじったのを使って満足してたのでそろそろ自分でイチからやるかと思ったので今日までやったところを一部メモ。
set nocompatible
filetype off
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
call neobundle#rc(expand('~/.vim/bundle/'))
endif
NeoBundle 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc'
NeoBundle 'VimClojure'
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'Shougo/neosnippet'
NeoBundle 'jpalardy/vim-slime'
NeoBundle 'scrooloose/syntastic'
NeoBundle 'mattn/emmet-vim'
NeoBundle 'tpope/vim-surround.git'
NeoBundle 'open-browser.vim'
NeoBundle 'mattn/webapi-vim'
NeoBundle 'hail2u/vim-css3-syntax'
NeoBundle 'taichouchou2/html5.vim'
NeoBundle 'vim-javascript'
"NeoBundle 'nathanaelkane/vim-indent-guides'
NeoBundle 'itchyny/lightline.vim'
NeoBundle 'yuroyoro/yuroyoro256.vim'
filetype plugin indent on
filetype indent on
syntax on
colorscheme yuroyoro256
set nocompatible
set nobackup
set noswapfile
set tabstop=4
set shiftwidth=4
set smartindent
set autoindent
set noexpandtab
set scrolloff=5
set textwidth=0
set autoread
set backspace=indent,eol,start
set formatoptions=lmoq
set vb t_vb=
set showcmd
set showmode
set clipboard+=unnamed
set clipboard=unnamed
set number
set hlsearch
set wrapscan
set ignorecase
set smartcase
set incsearch
set cursorline
autocmd VimEnter,Colorscheme * :hi Cursorline cterm=underline ctermbg=234
set list
set listchars=tab:▸\ ,trail:-
noremap ; :
登録:
コメント (Atom)