forked from colonelpanic/dotfiles
rearrange casks and add new jumping features to .emacs.d
This commit is contained in:
parent
8cab4b425b
commit
029604feee
@ -1 +1 @@
|
|||||||
Subproject commit 9fa143f9ab30546a2f5cc6673cc90a800159e1f2
|
Subproject commit 89d107022d8fea58ba1947be11b189a0848bde00
|
28
tasks/osx.py
28
tasks/osx.py
@ -17,31 +17,37 @@ def all(ctx):
|
|||||||
osx_config(ctx)
|
osx_config(ctx)
|
||||||
|
|
||||||
|
|
||||||
macvim_install = ("macvim --override-system-vim --custom-system-icons "
|
|
||||||
"--with-features=huge --enable-rubyinterp "
|
|
||||||
"--enable-pythoninterp --enable-perlinterp --enable-cscope")
|
|
||||||
ESSENTIAL = (
|
ESSENTIAL = (
|
||||||
"emacs --cocoa --srgb --with-x", "tmux", "python --with-brewed-openssl",
|
"emacs --cocoa --srgb --with-x", "tmux", "python --with-brewed-openssl",
|
||||||
"htop", "zsh", "make"
|
"htop", "zsh", "make", "scala", "sbt", "node", "npm", "daemonize",
|
||||||
|
"readline", "netcat", "reattach-to-user-namespace", "watch"
|
||||||
)
|
)
|
||||||
|
|
||||||
BASICS = (
|
BASICS = (
|
||||||
"findutils", "coreutils", "binutils", "diffutils", "ed --default-names",
|
"findutils", "coreutils", "binutils", "diffutils", "ed --default-names",
|
||||||
"gawk", "gnu-indent --default-names", "gnu-sed --default-names",
|
"gawk", "gnu-indent --default-names", "gnu-sed --default-names",
|
||||||
"gnu-tar --default-names", "gnu-which --default-names",
|
"gnu-tar --default-names", "gnu-which --default-names",
|
||||||
"gnutls --default-names", "grep --default-names", "gzip", "watch",
|
"gnutls --default-names", "grep --default-names", "gzip",
|
||||||
"wdiff --with-gettext", "wget --enable-iri"
|
"wdiff --with-gettext", "wget --enable-iri"
|
||||||
)
|
)
|
||||||
|
|
||||||
SHOULD_INSTALL = (
|
SHOULD_INSTALL = (
|
||||||
"nmap", "readline", "netcat", "reattach-to-user-namespace", "daemonize",
|
"nmap", "ngrep", "gist", "gawk", "pstree", "ack", "hub", "tig", "heroku",
|
||||||
"ngrep", "gist", "gawk", "pstree", "ack", "hub", "tig", "heroku", "scala",
|
|
||||||
"sbt", "node", "npm"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
macvim_install = ("macvim --override-system-vim --custom-system-icons "
|
||||||
|
"--with-features=huge --enable-rubyinterp "
|
||||||
|
"--enable-pythoninterp --enable-perlinterp --enable-cscope")
|
||||||
MISC = ("file-formula", "less", "openssh --with-brewed-openssl",
|
MISC = ("file-formula", "less", "openssh --with-brewed-openssl",
|
||||||
"perl518", "rsync", "svn", "unzip", "docker", "boot2docker", "pandoc",
|
"perl518", "rsync", "svn", "unzip", "docker", "boot2docker", "pandoc",
|
||||||
"mercurial", "ctags-exuberant", macvim_install)
|
"mercurial", "ctags-exuberant", macvim_install)
|
||||||
CASKS = ('caffeine', 'flux', 'google-chrome', 'iterm2', 'spotify', 'synergy',
|
|
||||||
'virtualbox', 'xquartz', 'slate', 'java', 'vlc', 'seil', 'karabiner',
|
CASKS = (
|
||||||
'mactex')
|
'caffeine', 'flux', 'google-chrome', 'iterm2', 'spotify', 'synergy',
|
||||||
|
'virtualbox', 'xquartz', 'slate', 'java', 'vlc', 'seil', 'karabiner',
|
||||||
|
'mactex'
|
||||||
|
)
|
||||||
|
|
||||||
@ctask
|
@ctask
|
||||||
def osx_config(ctx):
|
def osx_config(ctx):
|
||||||
|
Loading…
Reference in New Issue
Block a user