Skip to content

Commit

Permalink
upd colors
Browse files Browse the repository at this point in the history
  • Loading branch information
A committed Nov 28, 2019
1 parent 7d9e4ed commit fc3761e
Show file tree
Hide file tree
Showing 7 changed files with 867 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .nvimrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ exec "so" dotfiles . '/nvim/utils.vim'

" Update colorscheme based on dark/light interface style
let g:colorschemeDark = 'nord'
let g:colorschemeLight = 'nofrils-light'
let g:colorschemeLight = 'nord-light'
let g:airline_theme = 'monochrome'

call SetBackgroundMode()
call timer_start(3000, "SetBackgroundMode", {"repeat": -1})
Expand Down
2 changes: 1 addition & 1 deletion .tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ set -g status-left-length 30
set -g status-right-length 100

# window list
set -g window-status-format " #[fg=black] #I.#W"
set -g window-status-format " #[fg=magenta] #I.#W"
set -g window-status-current-format " #[fg=black,bg=magenta] #I.#W "
set -g window-status-separator ""

Expand Down
2 changes: 1 addition & 1 deletion bin/iterm-theme
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async def main(connection):
if "dark" in parts:
preset = await iterm2.ColorPreset.async_get(connection, "Nord (2)")
else:
preset = await iterm2.ColorPreset.async_get(connection, "OneHalfLight")
preset = await iterm2.ColorPreset.async_get(connection, "polar")

# Update the list of all profiles and iterate over them.
profiles=await iterm2.PartialProfile.async_query(connection)
Expand Down
Loading

0 comments on commit fc3761e

Please sign in to comment.