Created
September 15, 2015 08:50
-
-
Save tokibito/699323d77e838fab88d9 to your computer and use it in GitHub Desktop.
vim
This file contains hidden or 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
colorscheme django | |
"set guifont=MS_ゴシック:h10 | |
set guifont=VL_ゴシック:h10 | |
set lines=40 | |
set columns=140 | |
set guioptions-=T | |
set guioptions-=m |
This file contains hidden or 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
syntax on | |
filetype plugin on | |
" filetype | |
let pascal_delphi=1 | |
let pascal_symbol_operator=1 | |
let pascal_no_tabs=1 | |
au BufNewFile,BufRead *.pp,*.rops setf pascal | |
au BufNewFile,BufRead *.htn setf hatena | |
" tab | |
set tabstop=2 | |
set shiftwidth=2 | |
set softtabstop=2 | |
set expandtab | |
" set smarttab | |
" indent | |
set ai | |
set noeol | |
set nobackup | |
set fileencoding=utf-8 | |
set fileencodings=utf-8,euc-jp,cp932 | |
set fileformats=unix,dos,mac | |
map <C-I> :tabnext<cr> | |
set bs=2 | |
" Exec | |
map mm :!make<cr> | |
map mt :!make test<cr> | |
map mh :!make html<cr> | |
map md :!dcc32 %<cr> | |
map me :!%:r.exe<cr> | |
map mp :!pep8 %<cr> | |
map mf :!pyflakes %<cr> | |
" Server only | |
"set mouse=a | |
"set ttymouse=xterm2 | |
" color scheme | |
colorscheme delek | |
" yankling | |
let g:yankring_history_file='.yankling_history' | |
" qbuf | |
let g:qb_hotkey=';;' | |
" cursorline | |
set cursorline | |
" special char width | |
if exists('&ambiwidth') | |
set ambiwidth=double | |
endif | |
" dropbox swap exclude | |
set directory=~/.swap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment