hyperterm config

main
Steffen Rademacker 8 years ago
parent 712179deb9
commit 977a0ef7a5

@ -17,18 +17,18 @@
remote = green
[color "diff"]
meta = yellow bold
commit = green bold
frag = magenta bold
old = red bold
new = green bold
meta = yellow
commit = green
frag = magenta
old = red
new = green
whitespace = red reverse
[color "diff-highlight"]
newNormal = green bold
newHighlight = green bold 22
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green
newHighlight = green 22
oldNormal = red
oldHighlight = red 52
[color "status"]
added = yellow
@ -55,7 +55,7 @@
fac = push origin refac
rs = reset HEAD --hard
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit
lo = log --graph --decorate --pretty=oneline --abbrev-commit --all
pu = !"git fetch origin -v; git fetch upstream -v; git merge upstream/master"
type = cat-file -t

@ -0,0 +1,70 @@
module.exports = {
config: {
fontSize: 12,
fontFamily: 'Hack, Inconsolata, Menlo, monospace',
cursorShape: 'BLOCK',
bell: false,
windowSize: [ 900, 600 ],
padding: '4px 4px 0',
// use solarized dark colors
cursorColor: '#839496',
backgroundColor: '#002b36',
foregroundColor: '#839496',
borderColor: '#073642',
colors: [
'#073642',
'#dc322f',
'#859900',
'#b58900',
'#268db2',
'#d33682',
'#2aa198',
'#eee8d5',
'#002b36',
'#cb4b16',
'#586e75',
'#657b83',
'#839496',
'#6c71c4',
'#93a1a1',
'#fdf6e3'
],
// custom css, better text, no border/margins/rounded stuff
css: `
* {
-webkit-font-feature-settings: "liga" on, "calt" on, "dlig" on !important;
text-rendering: optimizeLegibility !important;
font-weight: 500;
}
.hyperterm_main {
border: 0;
border-radius: 0;
}
`,
// custom css to embed in the terminal window
termCSS: `
@media (-webkit-max-device-pixel-ratio: 1.3), (max-resolution: 120dpi) {
x-screen {
-webkit-font-smoothing: subpixel-antialiased !important;
}
}
`,
// plugins config
hyperclean: {
hideTabs: true,
hideFirstTabBorder: true
}
},
plugins: [
'hyperclean',
'hyperterm-1password'
]
};

@ -18,6 +18,7 @@ export PATH=/usr/local/bin:/usr/local/sbin:$PATH
brew install clipper
brew install coreutils
brew install git
brew install hyperterm
brew install tmux
brew install zsh
@ -49,6 +50,7 @@ ln -s ~/dotfiles/editorconfig ~/.editorconfig
ln -s ~/dotfiles/eslintrc ~/.eslintrc
ln -s ~/dotfiles/gitconfig ~/.gitconfig
ln -s ~/dotfiles/gitignore ~/.gitignore
ln -s ~/dotfiles/hyperterm.js ~/.hyperterm.js
ln -s ~/dotfiles/slate.js ~/.slate.js
ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
ln -s ~/dotfiles/vim ~/.vim

Loading…
Cancel
Save