This file contains 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
"make cursorline to be underlined in gvim: | |
hi CursorLine gui=underline |
This file contains 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
require 'highline/import' | |
require 'ezcrypto' | |
p "After Start" | |
tasks = [ | |
{ | |
:name => 'kill_dropbox', | |
:command => "taskkill /f /im Dropbox.exe", |
This file contains 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
#!/usr/bin/env ruby | |
require 'yaml' | |
RED = "1;31" | |
GREEN = "1;32" | |
YELLOW = "1;33" | |
unless RUBY_PLATFORM.include?('linux') | |
begin | |
require 'Win32/Console/ANSI' #if RUBY_PLATFORM =~ /win32/ |
This file contains 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
" ============================================================================ | |
" File: NERD_tree.vim | |
" Description: vim global plugin that provides a nice tree explorer | |
" Maintainer: Martin Grenfell <martin.grenfell at gmail dot com> | |
" Last Change: 1 December, 2009 | |
" License: This program is free software. It comes without any warranty, | |
" to the extent permitted by applicable law. You can redistribute | |
" it and/or modify it under the terms of the Do What The Fuck You | |
" Want To Public License, Version 2, as published by Sam Hocevar. | |
" See http://sam.zoy.org/wtfpl/COPYING for more details. |