Update dotfiles

This commit is contained in:
Tyler Perkins 2021-09-20 09:38:20 -04:00
parent ab74f037d8
commit 30d6dd54b4
3 changed files with 27 additions and 7 deletions

View File

@ -51,6 +51,8 @@ alias sudo="doas"
alias sched="vim /home/tyler/school/Sched.txt"
alias disable-alarm=". /home/tyler/.desktop/alarm/disable-alarm.sh"
alias memes-down="rsync -azPv tyler@174.104.135.12:/media/hd/memes/ /media/hd/memes"
alias memes-up="rsync -azPv /media/hd/memes/ tyler@174.104.135.12:/media/hd/memes/"
#display colors

View File

@ -1 +1,4 @@
profile=gpu-hq
fs
osc=no

View File

@ -15,19 +15,15 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
"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'
Plugin 'vim-syntastic/syntastic'
"Appearence
Plugin 'ap/vim-css-color'
@ -46,6 +42,26 @@ filetype plugin indent on
"enable hardmode
"let g:hardtime_default_on = 1
"Disable arrow movement, resize splits instead
nnoremap <Up> :resize +2<CR>
nnoremap <Down> :resize -2<CR>
nnoremap <Left> :vertical resize +2<CR>
nnoremap <Right> :vertical resize -2<CR>
"Syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
highlight SyntasticError guibg=#2f0000
let g:syntastic_always_populate_loc_list = 1
"let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_cpp_remove_include_errors = 1
let g:syntastic_c_remove_include_errors = 1
"dont show the mode
set noshowmode
@ -53,7 +69,6 @@ set noshowmode
map <C-o> :NERDTreeToggle<CR>
let NERDTreeIgnore = ['\.o$']
"set lightline colortheme
let g:lightline = {
\ 'colorscheme' : 'powerline',