Skip to content

Instantly share code, notes, and snippets.

View tyru's full-sized avatar
🏠
Working from home

Fujiwara Takuya tyru

🏠
Working from home
View GitHub Profile
@KushalP
KushalP / less.vim
Created October 25, 2010 22:55 — forked from bryanjswift/less.vim
" Vim syntax file
" Language: LESS Cascading Style Sheets
" Maintainer: Leaf Corcoran <[email protected]>
" Modifier: Bryan J Swift <[email protected]>
" URL: http://leafo.net/lessphp/vim/less.vim
" URL: http://gist.github.com/161047
" Last Change: 2009 August 4
" LESS by Leaf Corcoran
" CSS2 by Nikolai Weibull
" Full CSS2, HTML4 support by Yeti
" everything source for unite.vim
" Version: 0.0.1
" Last Change: 01 Dec 2010
" Author: sgur <sgurrr at gmail.com>
" Licence: The MIT License {{{
" Permission is hereby granted, free of charge, to any person obtaining a copy
" of this software and associated documentation files (the "Software"), to deal
" in the Software without restriction, including without limitation the rights
" to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
" copies of the Software, and to permit persons to whom the Software is
@eagletmt
eagletmt / clang_complete.vim
Created October 30, 2010 15:52
neocomplcache plugin to complete in C/C++ using clang
" original: http://github.com/Rip-Rip/clang_complete
" File: clang_complete.vim
" Author: Xavier Deguillard <[email protected]>
" Modified by: eagletmt <[email protected]>
"
" Description: Use of clang to complete in C/C++.
"
" Configuration: Each project can have a .clang_complete at his root,
" containing the compiler options. This is useful if
"=============================================================================
" FILE: everything.vim
" Last Modified: 28 Oct 2010
" Description: everything のコマンドラインインタフェース(es.exe)を利用し、
" NTFSボリュームの全てのファイルを瞬時にUniteから使うためのsource
" Requirement: everything.exe
" : es.exe in $PATH
"=============================================================================
function! unite#sources#everything#define()"{{{
@tsukkee
tsukkee / nerdtree_unite_filerec.vim
Created October 31, 2010 13:54
NERDTreeで選択したノードからUnite file_recする
if exists("g:loaded_nerdtree_unite_filerec")
finish
endif
let g:loaded_nerdtree_unite_filerec = 1
if !exists(':Unite')
echoerr 'This plugin requires unite.vim'
finish
endif
diff -Nru src.org/Make_bc5.mak src/Make_bc5.mak
--- src.org/Make_bc5.mak 2004-05-19 00:55:41.000000000 +0900
+++ src/Make_bc5.mak 2005-02-08 10:56:09.000000000 +0900
@@ -403,6 +403,12 @@
DEFINES = $(DEFINES) -DNBDEBUG
NBDEBUG_DEP = nbdebug.h nbdebug.c
!endif
+
+!if ("$(IMC)"=="yes")
+DEFINES = $(DEFINES) -DFEAT_IM_CUSTOM -DFEAT_SKK -DFEAT_POBOX
@ryross
ryross / ryderbeans.vim
Created November 2, 2010 23:40
fork of jellybeans vim colorscheme
" Vim color file
"
" " __ _ _ _ "
" " \ \ ___| | |_ _| |__ ___ __ _ _ __ ___ "
" " \ \/ _ \ | | | | | _ \ / _ \/ _ | _ \/ __| "
" " /\_/ / __/ | | |_| | |_| | __/ |_| | | | \__ \ "
" " \___/ \___|_|_|\__ |____/ \___|\____|_| |_|___/ "
" " \___/ "
"
" "A colorful, dark color scheme for Vim."
" Assumption: This script is executed by gVim.
function! s:css_property_from(vim_attribute)
if a:vim_attribute ==# 'bold' || a:vim_attribute ==# 'standout'
return 'font-weight: bolder;'
elseif a:vim_attribute ==# 'underline'
return 'text-decoration: underline;'
elseif a:vim_attribute ==# 'undercurl'
return 'border-bottom: thin dashed;'
autocmd BufNewFile,BufRead *.tx setfiletype xslate
autocmd BufNewFile,BufRead *.html if search('^: ') > 0 | set filetype=xslate | endif
if !has('conceal')
finish
endif
set conceallevel=2
syntax match perlLambda +\(=\s*\)\@<=sub+ conceal cchar=λ