Removed termite

lightmode
E. Almqvist 4 years ago
parent 43bfec46b4
commit 8123a670ca
  1. 35
      .Xresources
  2. 4
      copydots.sh
  3. 16
      polybar/config
  4. 13
      termite/config
  5. 41
      vimrc

@ -0,0 +1,35 @@
URxvt.scrollBar: false
URxvt.font: xft:Hack:size=11
URxvt.url-launcher: /usr/bin/firefox
URxvt*highlightColor: #282a2e
URxvt*highlightTextColor: #bfbfbf
URxvt*lineSpace: 1
URxvt.letterSpace: -1
! Aesthetics
URxvt*fading: 20
URxvt*fadeColor: #111015
! Colors
*background: #111015
*foreground: #c5c8c6
*cursorColor: #b0b0b0
*color0: #282a2e
*color8: #373b41
*color1: #a54242
*color9: #cc6666
*color2: #8c9440
*color10: #b5bd68
*color3: #de935f
*color11: #f0c674
*color4: #5f819d
*color12: #81a2be
*color5: #85676f
*color13: #b294bb
*color6: #5e8d87
*color14: #8abeb7
*color7: #707880
*color15: #c5c8c6

@ -6,12 +6,14 @@ repoPath=$HOME/dotfiles
cp -r $HOME/.config/rofi $repoPath cp -r $HOME/.config/rofi $repoPath
cp -r $HOME/.config/conky $repoPath cp -r $HOME/.config/conky $repoPath
cp -r $HOME/.config/polybar $repoPath cp -r $HOME/.config/polybar $repoPath
cp -r $HOME/.config/termite $repoPath
cp -r $HOME/.config/neofetch $repoPath cp -r $HOME/.config/neofetch $repoPath
cp -r $HOME/.config/ranger $repoPath cp -r $HOME/.config/ranger $repoPath
cp -r $HOME/.config/dunst $repoPath cp -r $HOME/.config/dunst $repoPath
cp -r $HOME/.config/picom $repoPath cp -r $HOME/.config/picom $repoPath
# X
cp $HOME/.Xresources $repoPath/.Xresources
# Doom Emacs # Doom Emacs
rm -r $repoPath/doom.d rm -r $repoPath/doom.d
cp -r $HOME/.doom.d $repoPath/doom.d cp -r $HOME/.doom.d $repoPath/doom.d

@ -2,8 +2,8 @@
#compositing-foreground = difference #compositing-foreground = difference
[colors] [colors]
#background = #aa111015 background = #aa111015
#foreground = #d8dee9 foreground = #d8dee9
line = #bbb line = #bbb
border = #bbb border = #bbb
accent = #434d5e accent = #434d5e
@ -11,13 +11,13 @@ accent2 = #637291
selected = #2590db selected = #2590db
focused = #f0c674 focused = #f0c674
background = ${xrdb:color0:#222} #background = ${xrdb:color0:#222}
foreground = ${xrdb:color7:#222} #foreground = ${xrdb:color7:#222}
foreground-alt = ${xrdb:color7:#222} foreground-alt = ${xrdb:color7:#222}
primary = ${xrdb:color1:#222} primary = ${xrdb:color4:#222}
secondary = ${xrdb:color2:#222} secondary = ${xrdb:color2:#222}
alert = ${xrdb:color3:#222} alert = ${xrdb:color8:#222}
special = ${xrdb:color14:#222} special = ${xrdb:color12:#222}
black = #32344a black = #32344a
red = #f7768c red = #f7768c
@ -119,7 +119,7 @@ label-floating = ~
# focused = Selected tag on focused monitor # focused = Selected tag on focused monitor
label-focused = %name% label-focused = %name%
label-focused-background = ${colors.background} label-focused-background = ${colors.background}
label-focused-foreground = ${colors.blue} label-focused-foreground = ${colors.primary}
label-focused-underline= ${colors.line} label-focused-underline= ${colors.line}
label-focused-padding = 1 label-focused-padding = 1

@ -1,13 +0,0 @@
[options]
font = Hack 10
size_hints = true
[colors]
foreground = #aad8d8d8
foreground_bold = #aad8d8d8
cursor = #aad8d8d8
#cursor_foreground = rgba(24, 24, 24, 0.8)
background = rgba(17, 16, 21, 0.94)
highlight = #161719

41
vimrc

@ -25,9 +25,6 @@ set autoindent
set noexpandtab " If this doesn't work for a lang change the $LANG.vim and append this here set noexpandtab " If this doesn't work for a lang change the $LANG.vim and append this here
set tabstop=4 set tabstop=4
set shiftwidth=4 set shiftwidth=4
" ~/.vim/plugged/vim-polyglot/ftplugin/(LANG).vim
" If not there try:
" :verbose set et? (remove that line)
vmap <Tab> >gv vmap <Tab> >gv
vmap <S-Tab> <gv vmap <S-Tab> <gv
@ -43,7 +40,6 @@ call plug#begin('~/.vim/plugged')
Plug 'preservim/nerdtree' " Tree navigation Plug 'preservim/nerdtree' " Tree navigation
Plug 'rafi/awesome-vim-colorschemes' " Theme collection Plug 'rafi/awesome-vim-colorschemes' " Theme collection
Plug 'chriskempson/base16-vim' " Theme Plug 'chriskempson/base16-vim' " Theme
Plug 'junegunn/goyo.vim' " Center code thing
call plug#end() call plug#end()
@ -57,8 +53,7 @@ vnoremap <C-r> "hy:%s/<C-r>h//gc<left><left><left>
" Theme " Theme
set t_Co=256 set t_Co=256
colorscheme base16-default-dark colors default
" color hybrid_material
let &showbreak = '↳ ' let &showbreak = '↳ '
hi Normal guibg=NONE ctermbg=NONE hi Normal guibg=NONE ctermbg=NONE
@ -69,41 +64,9 @@ highlight LineNr ctermfg=grey ctermbg=NONE
" Syntax highlightning " Syntax highlightning
let asmsyntax = 'nasm' let asmsyntax = 'nasm'
set termguicolors
let base16colorspace=256
" Goyo
let g:goyo_width=180
function! s:goyo_enter()
if executable('tmux') && strlen($TMUX)
silent !tmux set status off
silent !tmux list-panes -F '\#F' | grep -q Z || tmux resize-pane -Z
endif
set noshowmode
set noshowcmd
set scrolloff=999
" Limelight
hi Normal guibg=NONE ctermbg=NONE
endfunction
function! s:goyo_leave()
if executable('tmux') && strlen($TMUX)
silent !tmux set status on
silent !tmux list-panes -F '\#F' | grep -q Z && tmux resize-pane -Z
endif
set showmode
set showcmd
set scrolloff=5
" Limelight!
hi Normal guibg=NONE ctermbg=NONE
endfunction
autocmd! User GoyoEnter nested call <SID>goyo_enter()
autocmd! User GoyoLeave nested call <SID>goyo_leave()
" YCM " YCM
set completeopt-=preview set completeopt-=preview
let g:ycm_show_diagnostics_ui = 0
" Tabs " Tabs
nnoremap <silent> <C-Left> :tabprevious<CR> nnoremap <silent> <C-Left> :tabprevious<CR>

Loading…
Cancel
Save