Update vim bashrc and newsboat

This commit is contained in:
Tyler Perkins 2021-08-26 10:53:23 -04:00
parent 23e73e03fa
commit ab74f037d8
3 changed files with 49 additions and 17 deletions

View File

@ -1,11 +1,6 @@
# /etc/skel/.bashrc ###############################################################################
# # Tyler Perkins
# This file is sourced by all *interactive* bash shells on startup, # .bashrc
# including some apparently interactive shells such as scp and rcp
# that can't tolerate any output. So make sure this doesn't display
# anything or bad things will happen !
# Test for an interactive shell. There is no need to set anything # Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from # past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases. # outputting anything in those cases.
@ -46,7 +41,7 @@ alias weather="curl wttr.in"
alias http="python -m http.server" alias http="python -m http.server"
alias google="tuxi" alias google="tuxi"
alias clipboard="xclip -selection clipboard" alias clipboard="xclip -selection clipboard"
alias new-wallpaper="xwallpaper --maximize $(find /home/tyler/.desktop/wallpaper/ -type f | shuf -n 1)" alias new-wallpaper="xwallpaper --maximize $(find /home/tyler/.desktop/wallpaper/ -type f | shuf -n 1 --random-source=/dev/random)"
alias diff="diff --color=auto" alias diff="diff --color=auto"
alias grep="grep -i --color=auto" alias grep="grep -i --color=auto"

View File

@ -40,7 +40,7 @@ bind-key x pb-delete
# Opening Config # Opening Config
browser "vivaldi %u" browser "vivaldi %u"
macro v set browser "mpv %u --no-terminal &" ; open-in-browser ; set browser "firefox %u" macro v set browser "mpv %u --no-terminal &" ; open-in-browser ; set browser "vivaldi %u"
#Pretty #Pretty

View File

@ -8,22 +8,59 @@ set nocompatible
filetype off filetype off
"set runtime path to insclude Vundle and init "set runtime path to insclude Vundle and init
"set rtp+=~/.vim/bundle/Vundle.vim set rtp+=~/.vim/bundle/Vundle.vim
"call vundle#begin() call vundle#begin()
"let vundle manage vundle "let vundle manage vundle
"Plugin 'VundleVim/Vundle.vim' Plugin 'VundleVim/Vundle.vim'
"add plugins here "add plugins here
"Plugin 'ycm-core/YouCompleteMe' Plugin 'ycm-core/YouCompleteMe'
Plugin 'tpope/vim-surround'
Plugin 'preservim/nerdtree'
Plugin 'angelskieglazki/hcch.vim'
Plugin 'luochen1990/rainbow'
Plugin 'jiangmiao/auto-pairs'
Plugin 'jamessan/vim-gnupg'
"Appearence
Plugin 'ap/vim-css-color'
Plugin 'chr4/nginx.vim'
Plugin 'itchyny/lightline.vim'
"hard mode
Plugin 'takac/vim-hardtime'
"end plugins "end plugins
"end "end
"call vundle#end() call vundle#end()
filetype plugin indent on filetype plugin indent on
"let g:loaded_youcompleteme = 1 "enable hardmode
"let g:hardtime_default_on = 1
"dont show the mode
set noshowmode
"toggle nerdtree
map <C-o> :NERDTreeToggle<CR>
let NERDTreeIgnore = ['\.o$']
"set lightline colortheme
let g:lightline = {
\ 'colorscheme' : 'powerline',
\ }
"enable rainbow brackets
let g:rainbow_active = 1
"enable syntax highlighting "enable syntax highlighting
syntax on syntax on
@ -60,7 +97,7 @@ set confirm
set mouse=a set mouse=a
"set command window to 2 lines, so we can see complete options "set command window to 2 lines, so we can see complete options
set cmdheight=2 set cmdheight=1
"display editor numbers "display editor numbers
set number relativenumber set number relativenumber