1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-02-22 04:34:48 +01:00

Compare commits

...

3 Commits

Author SHA1 Message Date
TiynGER
7314ee7ea1 nvim: added lightline with codedark colorscheme 2020-12-17 14:00:20 +01:00
TiynGER
9ffc9f80fd alias: dont ask for sudopass a second time in yay 2020-12-17 13:56:27 +01:00
TiynGER
7d83664ff8 mutt: changed colorscheme for better readability 2020-12-17 13:55:53 +01:00
3 changed files with 11 additions and 1 deletions

View File

@@ -98,6 +98,9 @@ alias weather="curl wttr.in"
# wget
alias wget="wget --hsts-file=$XDG_CACHE_HOME/wget-hsts"
# yay
alias yay="yay --save --sudoloop"
# youtube-dl
alias yta="youtube-dl -f 'bestaudio[ext=m4a]'"
alias yta="youtube-dl -f 'bestvide[ext=mp4]+bestaudio[ext=m4a]'"

View File

@@ -105,7 +105,7 @@ bind index,pager B sidebar-toggle-visible
#mono indicator invert
#mono error bold
#color normal default default
#color indicator brightblack white
color indicator black white
#color sidebar_highlight red default
#color sidebar_divider brightblack black
#color sidebar_flagged red black

View File

@@ -13,6 +13,7 @@ Plug 'airblade/vim-gitgutter' " git upgrades
Plug 'alvan/vim-closetag' " auto close HTML tags
Plug 'donRaphaco/neotex' , {'for': 'tex'} " asynchronous pdf rendering
Plug 'frazrepo/vim-rainbow' " colorized matching brackets
Plug 'itchyny/lightline.vim' " fancy statusline
Plug 'junegunn/fzf.vim' " quickly jump files using fzf
Plug 'lervag/vimtex' , {'for' : 'tex'} " tex library for autocompletion
Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} " show tags
@@ -51,6 +52,9 @@ let g:neotex_enabled = 2
" frazrepo/vim-rainbow
au FileType,BufNewFile,BufRead java,c,cpp,py,h call rainbow#load()
" itchyny/lightline.vim
let g:lightline = { 'colorscheme': 'codedark'}
" junegunn/fzf.vim
let $FZF_DEFAULT_COMMAND = 'find . ~ -type f'
nmap <F4> :FZF<CR>
@@ -159,6 +163,9 @@ endfunction
set go=a
" dont show status in commandline due to lightline
set noshowmode
" enable mouse for all modes
set mouse=a
set clipboard+=unnamedplus