diff --git a/powerline/.config/powerline/config.json b/powerline/.config/powerline/config.json index fae5fe6..58aa652 100644 --- a/powerline/.config/powerline/config.json +++ b/powerline/.config/powerline/config.json @@ -3,33 +3,16 @@ "term_truecolor": false }, "ext": { - "ipython": { - "colorscheme": "default", - "theme": "in", - "local_themes": { - "rewrite": "rewrite", - "out": "out", - "in2": "in2" - } - }, - "pdb": { - "colorscheme": "default", - "theme": "default" - }, "shell": { - "colorscheme": "default", - "theme": "default_leftonly", + "colorscheme": "solarized", + "theme": "solarized", "local_themes": { "continuation": "continuation", "select": "select" } }, - "tmux": { - "colorscheme": "default", - "theme": "default" - }, "vim": { - "colorscheme": "default", + "colorscheme": "solarized", "theme": "default", "local_themes": { "__tabline__": "tabline", diff --git a/powerline/.config/powerline/themes/shell/default_leftonly.json b/powerline/.config/powerline/themes/shell/default_leftonly.json deleted file mode 100644 index 97746b1..0000000 --- a/powerline/.config/powerline/themes/shell/default_leftonly.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "segments": { - "left": [ - { - "function": "powerline.segments.shell.cwd", - "args" : { - "dir_shorten_len" : 2 - }, - "priority": 10 - }, - { - "function": "powerline_gitstatus.gitstatus", - "priority": 40 - } - ] - } -} diff --git a/powerline/.config/powerline/themes/shell/solarized.json b/powerline/.config/powerline/themes/shell/solarized.json new file mode 100644 index 0000000..b4e5d8c --- /dev/null +++ b/powerline/.config/powerline/themes/shell/solarized.json @@ -0,0 +1,22 @@ +{ + "segments": { + "left": [ + { + "function": "powerline.segments.common.env.virtualenv", + "priority": 50 + }, + { + "function": "powerline.segments.shell.cwd", + "priority": 10 + }, + { + "function": "powerline.segments.common.vcs.branch", + "priority": 40 + }, + { + "function": "powerline.segments.shell.last_status", + "priority": 10 + } + ] + } +}