If you check vundle's help log and it says git cannot be found, double check the value of $PATH
:echo $PATH
If this isn't correct you can usually run mvim to source the correct path.
(* Gets the current path from a shell *) | |
tell application "Finder" | |
set pwd to do shell script "pwd" | |
set pwd to (POSIX file pwd) as string | |
-- Replicate the open command for example | |
open folder pwd | |
end tell |
-(void) styleTextField { | |
[textField setTextColor:[NSColor blackColor]]; | |
} |
set-option -g prefix C-a | |
set -g mode-keys vi | |
bind h select-pane -L | |
bind j select-pane -D | |
bind k select-pane -U | |
bind l select-pane -R |
tmux or screen breaks global pasteboard support, if you use mvim outside of tmux this error should go away. |
If you check vundle's help log and it says git cannot be found, double check the value of $PATH
:echo $PATH
If this isn't correct you can usually run mvim to source the correct path.
git config --global color.ui true |
via: https://github.com/humiaozuzu/dot-vimrc
For syntax check tools:
Languages | Lint Tools | Install guide |
---|---|---|
C | gcc | built-in |
CPP | g++ | built-in |
CoffeeScript | coffee | npm install -g coffeelint |
CSS | csslint | npm install -g csslint |
http://mxcl.github.com/homebrew/
brew install tree
brew install ack
brew install wget
compass_config do |config| | |
config.output_style = :expanded | |
config.line_comments = false | |
end | |