Skip to content

Commit

Permalink
tmux remove red font default
Browse files Browse the repository at this point in the history
  • Loading branch information
hash committed Feb 25, 2022
1 parent d14157e commit 7fca0e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ set -g status-interval 1 # 状态栏刷新时间
set -g status-justify left # 状态栏列表左对齐
setw -g monitor-activity on # 非当前窗口有内容更新时在状态栏通知

set -g status-fg red # 设置状态栏前景黄色
# set -g status-fg red # 设置状态栏前景黄色
set -g status-style "bg=black, fg=white" # 状态栏前景背景色

set -g status-left "#[bg=default] HOTA #[fg=red,bg=default]-> #S " # 状态栏左侧内容
set -g status-left "#[bg=default] HOTA #[fg=white,bg=default]-> #S " # 状态栏左侧内容
set -g status-right '#[fg=red]>> #[fg=white,bg=default] #(uptime) | %m-%d-%a/%Y '

set -g status-left-length 500 # 状态栏左边长度
Expand Down
8 changes: 6 additions & 2 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ nmap <silent> <Leader>g <Plug>IndentGuidesToggle
" next and previous error
nnoremap <silent> <Leader>e :EasyCompleteNextDiagnostic<CR>
nnoremap <silent> <Leader>b :EasyCompletePreviousDiagnostic<CR>
nnoremap <silent> <Leader>v :EasyCompleteEnable<CR>
nnoremap <silent> <Leader>z :EasyCompleteDisable<CR>
" }
" /////////////////////////////////////////// Leader ',' setting end /////////////////////////////////// "

Expand All @@ -145,9 +147,11 @@ call plug#end()
" vim-easycomplete {
" let g:easycomplete_tab_trigger="<tab>"
" let g:easycomplete_diagnostics_enable = 0 " grammar check
" let g:easycomplete_signature_enable = 0 " code function chcek
" let g:easycomplete_signature_enable = 0 " code function check
" (dark, light, rider, sharp)
let g:easycomplete_scheme="sharp"
let g:easycomplete_scheme="dark"
let g:easycomplete_lsp_checking = 1
let g:easycomplete_diagnostics_enable = 0
"}
"The-NERD-tree {
"let NERDTreeWinPos="right"
Expand Down

0 comments on commit 7fca0e7

Please sign in to comment.