1 dir limit enforced
This commit is contained in:
parent
bb5c7e2fa5
commit
06f392161a
|
@ -179,3 +179,4 @@ alias code="cd /home/jfm/Customers/TDC/Code/Onboarding"
|
|||
alias tdc="cd /home/jfm/Customers/TDC"
|
||||
alias prod="ssh -fN sochi"
|
||||
alias top="htop"
|
||||
alias ssh="TERM=xterm-256color ssh"
|
||||
|
|
|
@ -1,36 +1,39 @@
|
|||
{
|
||||
"common": {
|
||||
"term_truecolor": false
|
||||
},
|
||||
"ext": {
|
||||
"shell": {
|
||||
"colorscheme": "solarized",
|
||||
"theme": "solarized",
|
||||
"local_themes": {
|
||||
"continuation": "continuation",
|
||||
"select": "select"
|
||||
}
|
||||
},
|
||||
"vim": {
|
||||
"colorscheme": "solarized",
|
||||
"theme": "default",
|
||||
"local_themes": {
|
||||
"__tabline__": "tabline",
|
||||
"common": {
|
||||
"term_truecolor": false
|
||||
},
|
||||
"ext": {
|
||||
"shell": {
|
||||
"colorscheme": "solarized",
|
||||
"theme": "solarized",
|
||||
"cwd": {
|
||||
"max_depth": 2
|
||||
},
|
||||
"local_themes": {
|
||||
"continuation": "continuation",
|
||||
"select": "select"
|
||||
}
|
||||
},
|
||||
"vim": {
|
||||
"colorscheme": "solarized",
|
||||
"theme": "default",
|
||||
"local_themes": {
|
||||
"__tabline__": "tabline",
|
||||
|
||||
"cmdwin": "cmdwin",
|
||||
"help": "help",
|
||||
"quickfix": "quickfix",
|
||||
"cmdwin": "cmdwin",
|
||||
"help": "help",
|
||||
"quickfix": "quickfix",
|
||||
|
||||
"powerline.matchers.vim.plugin.nerdtree.nerdtree": "plugin_nerdtree",
|
||||
"powerline.matchers.vim.plugin.commandt.commandt": "plugin_commandt",
|
||||
"powerline.matchers.vim.plugin.gundo.gundo": "plugin_gundo",
|
||||
"powerline.matchers.vim.plugin.gundo.gundo_preview": "plugin_gundo-preview"
|
||||
}
|
||||
},
|
||||
"wm": {
|
||||
"colorscheme": "default",
|
||||
"theme": "default",
|
||||
"update_interval": 2
|
||||
}
|
||||
}
|
||||
"powerline.matchers.vim.plugin.nerdtree.nerdtree": "plugin_nerdtree",
|
||||
"powerline.matchers.vim.plugin.commandt.commandt": "plugin_commandt",
|
||||
"powerline.matchers.vim.plugin.gundo.gundo": "plugin_gundo",
|
||||
"powerline.matchers.vim.plugin.gundo.gundo_preview": "plugin_gundo-preview"
|
||||
}
|
||||
},
|
||||
"wm": {
|
||||
"colorscheme": "default",
|
||||
"theme": "default",
|
||||
"update_interval": 2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,21 @@
|
|||
{
|
||||
"segments": {
|
||||
"left": [
|
||||
{
|
||||
"function": "powerline.segments.common.env.virtualenv",
|
||||
"priority": 50
|
||||
},
|
||||
{
|
||||
"function": "powerline.segments.shell.cwd",
|
||||
"priority": 10
|
||||
},
|
||||
{
|
||||
"function": "powerline_gitstatus.gitstatus",
|
||||
"priority": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
"segments": {
|
||||
"left": [
|
||||
{
|
||||
"function": "powerline.segments.common.env.virtualenv",
|
||||
"priority": 50
|
||||
},
|
||||
{
|
||||
"function": "powerline.segments.shell.cwd",
|
||||
"priority": 10,
|
||||
"args": {
|
||||
"dir_limit_depth": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"function": "powerline_gitstatus.gitstatus",
|
||||
"priority": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -65,7 +65,7 @@ XTerm*foreground: #fdf6e3
|
|||
XTerm*reverseVideo: on
|
||||
XTerm*faceName: Terminus:size=11:antialias=true
|
||||
XTerm*selectToClipboard: true
|
||||
URxvt*font: xft:DejaVu Sans Mono for Powerline:size=11
|
||||
URxvt*font: xft:DejaVu Sans Mono for Powerline:size=11:minspace=False
|
||||
! URxvt.font: 9x15,xft:TerminessTTFNerdFontMono
|
||||
|
||||
! alternative font settings with 'terminus':
|
||||
|
|
Loading…
Reference in New Issue