diff options
| author | Shubham Saini <shubham6405@gmail.com> | 2020-03-20 08:37:29 +0000 |
|---|---|---|
| committer | Shubham Saini <shubham6405@gmail.com> | 2020-03-20 08:37:29 +0000 |
| commit | d379b850ba86ca759f1cd2343bf3bd8c24c11245 (patch) | |
| tree | 7259bd14bacd0dcca194c43a931929d928c8f272 | |
| parent | dbb28cb23b1c4b6edc5e3cf2b7647b6a7aa0efb9 (diff) | |
new colors, minimal vim
| -rwxr-xr-x | bspwm/.config/bspwm/bspwmrc | 2 | ||||
| -rw-r--r-- | nvim/.config/nvim/init.vim | 69 | ||||
| -rw-r--r-- | polybar/.config/polybar/config | 4 | ||||
| -rw-r--r-- | x/.Xresources | 52 |
4 files changed, 51 insertions, 76 deletions
diff --git a/bspwm/.config/bspwm/bspwmrc b/bspwm/.config/bspwm/bspwmrc index 03e2e53..ae8ea3b 100755 --- a/bspwm/.config/bspwm/bspwmrc +++ b/bspwm/.config/bspwm/bspwmrc | |||
| @@ -9,7 +9,7 @@ compton --config ~/.config/compton.conf & | |||
| 9 | ~/scrypts/bat_check.sh & | 9 | ~/scrypts/bat_check.sh & |
| 10 | redshift -l 13.082680:80.270718 & | 10 | redshift -l 13.082680:80.270718 & |
| 11 | xbacklight -set 30 & | 11 | xbacklight -set 30 & |
| 12 | feh --bg-fill ~/Pictures/wavesss.jpg & | 12 | feh --bg-fill ~/Pictures/land.jpg & |
| 13 | urxvtd & | 13 | urxvtd & |
| 14 | 14 | ||
| 15 | bspc monitor -d term web music files code virt chat game IX X | 15 | bspc monitor -d term web music files code virt chat game IX X |
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 59ce2b3..ce38e7c 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim | |||
| @@ -15,8 +15,6 @@ Plug 'junegunn/goyo.vim' | |||
| 15 | Plug 'airblade/vim-gitgutter' | 15 | Plug 'airblade/vim-gitgutter' |
| 16 | Plug 'godlygeek/tabular' | 16 | Plug 'godlygeek/tabular' |
| 17 | Plug 'plasticboy/vim-markdown' | 17 | Plug 'plasticboy/vim-markdown' |
| 18 | Plug 'vim-airline/vim-airline' | ||
| 19 | Plug 'vim-airline/vim-airline-themes' | ||
| 20 | call plug#end() | 18 | call plug#end() |
| 21 | 19 | ||
| 22 | set guicursor= | 20 | set guicursor= |
| @@ -88,60 +86,21 @@ let g:keysound_volume = 1000 | |||
| 88 | let g:keysound_py_version = 3 | 86 | let g:keysound_py_version = 3 |
| 89 | let g:keysound_theme = 'default' | 87 | let g:keysound_theme = 'default' |
| 90 | 88 | ||
| 91 | " symbols | ||
| 92 | let g:Powerline_symbols = "fancy" | ||
| 93 | let g:Powerline_dividers_override = ["\Ue0b0","\Ue0b1","\Ue0b2","\Ue0b3"] | ||
| 94 | let g:Powerline_symbols_override = {'BRANCH': "\Ue0a0", 'LINE': "\Ue0a1", 'RO': "\Ue0a2"} | ||
| 95 | let g:airline_powerline_fonts = 1 | ||
| 96 | let g:airline_right_alt_sep = '' | ||
| 97 | let g:airline_right_sep = '' | ||
| 98 | let g:airline_left_alt_sep= '' | ||
| 99 | let g:airline_left_sep = '' | ||
| 100 | |||
| 101 | " air-line | ||
| 102 | let g:airline_powerline_fonts = 1 | ||
| 103 | |||
| 104 | if !exists('g:airline_symbols') | ||
| 105 | let g:airline_symbols = {} | ||
| 106 | endif | ||
| 107 | |||
| 108 | " unicode symbols | ||
| 109 | let g:airline_left_sep = '»' | ||
| 110 | let g:airline_left_sep = '▶' | ||
| 111 | let g:airline_right_sep = '«' | ||
| 112 | let g:airline_right_sep = '◀' | ||
| 113 | let g:airline_symbols.linenr = '␊' | ||
| 114 | let g:airline_symbols.linenr = '' | ||
| 115 | let g:airline_symbols.linenr = '¶' | ||
| 116 | let g:airline_symbols.branch = '⎇' | ||
| 117 | let g:airline_symbols.paste = 'ρ' | ||
| 118 | let g:airline_symbols.paste = 'Þ' | ||
| 119 | let g:airline_symbols.paste = '∥' | ||
| 120 | let g:airline_symbols.whitespace = 'Ξ' | ||
| 121 | |||
| 122 | " airline symbols | ||
| 123 | let g:airline_left_sep = '' | ||
| 124 | let g:airline_left_alt_sep = '' | ||
| 125 | let g:airline_right_sep = '' | ||
| 126 | let g:airline_right_alt_sep = '' | ||
| 127 | let g:airline_symbols.branch = '' | ||
| 128 | let g:airline_symbols.readonly = '' | ||
| 129 | let g:airline_symbols.linenr = '' | ||
| 130 | |||
| 131 | "Airline Themes | ||
| 132 | "let g:airline_theme='dark' | ||
| 133 | "let g:airline_theme='badcat' | ||
| 134 | let g:airline_theme='base16_grayscale' | ||
| 135 | "let g:airline_theme='ravenpower' | ||
| 136 | "let g:airline_theme='simple' | ||
| 137 | "let g:airline_theme='term' | ||
| 138 | "let g:airline_theme='ubaryd' | ||
| 139 | "let g:airline_theme='laederon' | ||
| 140 | "let g:airline_theme='kolor' | ||
| 141 | "let g:airline_theme='deus' | ||
| 142 | "let g:airline_theme='powerlineish' | ||
| 143 | |||
| 144 | " nerdtree | 89 | " nerdtree |
| 145 | let g:NERDTreeWinPos = "right" | 90 | let g:NERDTreeWinPos = "right" |
| 146 | map <C-n> :NERDTreeToggle<CR> | 91 | map <C-n> :NERDTreeToggle<CR> |
| 147 | nnoremap <c-p> :FZF<CR> | 92 | nnoremap <c-p> :FZF<CR> |
| 93 | |||
| 94 | "statusbar | ||
| 95 | hi Comment cterm=italic | ||
| 96 | hi CursorLine ctermbg=none | ||
| 97 | set statusline= | ||
| 98 | set statusline +=%1*\ %n\ %* "buffer number | ||
| 99 | set statusline +=%5*%{&ff}%* "file format | ||
| 100 | set statusline +=%3*%y%* "file type | ||
| 101 | set statusline +=%4*\ %<%F%* "full path | ||
| 102 | set statusline +=%2*%m%* "modified flag | ||
| 103 | set statusline +=%1*%=%5l%* "current line | ||
| 104 | set statusline +=%2*/%L%* "total lines | ||
| 105 | set statusline +=%1*%4v\ %* "virtual column number | ||
| 106 | set statusline +=%2*0x%04B\ %* "character under cursor | ||
diff --git a/polybar/.config/polybar/config b/polybar/.config/polybar/config index 6d55957..8f9701d 100644 --- a/polybar/.config/polybar/config +++ b/polybar/.config/polybar/config | |||
| @@ -3,7 +3,7 @@ screenchange-reload = true | |||
| 3 | 3 | ||
| 4 | [colors] | 4 | [colors] |
| 5 | #background = ${xrdb:color0:#222} | 5 | #background = ${xrdb:color0:#222} |
| 6 | background = ${xrdb:background:#0d0f14} | 6 | background = ${xrdb:background:#060808} |
| 7 | background-alt = ${xrdb:color0:#000} | 7 | background-alt = ${xrdb:color0:#000} |
| 8 | ;foreground = ${xrdb:color7:#222} | 8 | ;foreground = ${xrdb:color7:#222} |
| 9 | foreground = ${xrdb:foreground:#c5c8c6} | 9 | foreground = ${xrdb:foreground:#c5c8c6} |
| @@ -65,7 +65,7 @@ ws-icon-7 = game;戮 | |||
| 65 | ws-icon-default = | 65 | ws-icon-default = |
| 66 | 66 | ||
| 67 | label-focused = %name% | 67 | label-focused = %name% |
| 68 | label-focused-foreground = ${xrdb:color14:#ffd7b1} | 68 | label-focused-foreground = ${xrdb:color6:#ffd7b1} |
| 69 | label-focused-padding = 1 | 69 | label-focused-padding = 1 |
| 70 | ;label-focused-font = 10 | 70 | ;label-focused-font = 10 |
| 71 | 71 | ||
diff --git a/x/.Xresources b/x/.Xresources index 08a6c64..71e4fb8 100644 --- a/x/.Xresources +++ b/x/.Xresources | |||
| @@ -35,26 +35,42 @@ URxvt*tintColor: #ffffff | |||
| 35 | URxvt*shading: 0 | 35 | URxvt*shading: 0 |
| 36 | URxvt*inheritPixmap: False | 36 | URxvt*inheritPixmap: False |
| 37 | 37 | ||
| 38 | *background: #0b0d12 | 38 | ! special |
| 39 | *foreground: #b3b8c4 | 39 | *.foreground: #c6c8d1 |
| 40 | *.background: #0c0c0f | ||
| 41 | *.cursorColor: #c6c8d1 | ||
| 40 | 42 | ||
| 41 | *color0: #3e4853 | 43 | ! black |
| 42 | *color1: #b06a58 | 44 | *.color0: #161821 |
| 43 | *color2: #95b47b | 45 | *.color8: #6b7089 |
| 44 | *color3: #e5c078 | ||
| 45 | *color4: #58698c | ||
| 46 | *color5: #7b5e8d | ||
| 47 | *color6: #82a1b2 | ||
| 48 | *color7: #cccaca | ||
| 49 | 46 | ||
| 50 | *color8: #525c67 | 47 | ! red |
| 51 | *color9: #ba7e6c | 48 | *.color1: #e27878 |
| 52 | *color10: #a9c88f | 49 | *.color9: #e98989 |
| 53 | *color11: #f9d48c | 50 | |
| 54 | *color12: #6c7da0 | 51 | ! green |
| 55 | *color13: #8f72a1 | 52 | *.color2: #b4be82 |
| 56 | *color14: #96b5c6 | 53 | *.color10: #c0ca8e |
| 57 | *color15: #e0dede | 54 | |
| 55 | ! yellow | ||
| 56 | *.color3: #e2a478 | ||
| 57 | *.color11: #e9b189 | ||
| 58 | |||
| 59 | ! blue | ||
| 60 | *.color4: #84a0c6 | ||
| 61 | *.color12: #91acd1 | ||
| 62 | |||
| 63 | ! magenta | ||
| 64 | *.color5: #a093c7 | ||
| 65 | *.color13: #ada0d3 | ||
| 66 | |||
| 67 | ! cyan | ||
| 68 | *.color6: #89b8c2 | ||
| 69 | *.color14: #95c4ce | ||
| 70 | |||
| 71 | ! white | ||
| 72 | *.color7: #c6c8d1 | ||
| 73 | *.color15: #d2d4de | ||
| 58 | 74 | ||
| 59 | ! Perls | 75 | ! Perls |
| 60 | URxvt.perl-ext-common : default,matcher,keyboard-select,url-select,resize-font | 76 | URxvt.perl-ext-common : default,matcher,keyboard-select,url-select,resize-font |
