Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dotfiles/.screenrc
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
10 lines (10 sloc)
478 Bytes
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
#terminfo and termcap for nice 256 color terminal | |
# allow bold colors - necessary for some reason | |
attrcolor b ".I" | |
# tell screen how to set colors. AB = background, AF=foreground | |
termcapinfo xterm "Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm" | |
termcapinfo xterm-256color "Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm" | |
termcapinfo screen-bce "Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm" | |
termcapinfo xterm-new "Co#256:AB=\E[48;5;%dm:AF=\E[38;5;%dm" | |
# erase background with current bg color | |
defbce "on" |