Update dotfiles
This commit is contained in:
parent
ab74f037d8
commit
30d6dd54b4
@ -51,6 +51,8 @@ alias sudo="doas"
|
|||||||
|
|
||||||
alias sched="vim /home/tyler/school/Sched.txt"
|
alias sched="vim /home/tyler/school/Sched.txt"
|
||||||
alias disable-alarm=". /home/tyler/.desktop/alarm/disable-alarm.sh"
|
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
|
#display colors
|
||||||
|
@ -1 +1,4 @@
|
|||||||
profile=gpu-hq
|
profile=gpu-hq
|
||||||
|
fs
|
||||||
|
|
||||||
|
osc=no
|
||||||
|
@ -15,19 +15,15 @@ call vundle#begin()
|
|||||||
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 'tpope/vim-surround'
|
||||||
|
|
||||||
Plugin 'preservim/nerdtree'
|
Plugin 'preservim/nerdtree'
|
||||||
|
|
||||||
Plugin 'angelskieglazki/hcch.vim'
|
Plugin 'angelskieglazki/hcch.vim'
|
||||||
|
|
||||||
Plugin 'luochen1990/rainbow'
|
Plugin 'luochen1990/rainbow'
|
||||||
|
|
||||||
Plugin 'jiangmiao/auto-pairs'
|
Plugin 'jiangmiao/auto-pairs'
|
||||||
|
|
||||||
Plugin 'jamessan/vim-gnupg'
|
Plugin 'jamessan/vim-gnupg'
|
||||||
|
Plugin 'vim-syntastic/syntastic'
|
||||||
|
|
||||||
"Appearence
|
"Appearence
|
||||||
Plugin 'ap/vim-css-color'
|
Plugin 'ap/vim-css-color'
|
||||||
@ -46,6 +42,26 @@ filetype plugin indent on
|
|||||||
"enable hardmode
|
"enable hardmode
|
||||||
"let g:hardtime_default_on = 1
|
"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
|
"dont show the mode
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
|
||||||
@ -53,7 +69,6 @@ set noshowmode
|
|||||||
map <C-o> :NERDTreeToggle<CR>
|
map <C-o> :NERDTreeToggle<CR>
|
||||||
let NERDTreeIgnore = ['\.o$']
|
let NERDTreeIgnore = ['\.o$']
|
||||||
|
|
||||||
|
|
||||||
"set lightline colortheme
|
"set lightline colortheme
|
||||||
let g:lightline = {
|
let g:lightline = {
|
||||||
\ 'colorscheme' : 'powerline',
|
\ 'colorscheme' : 'powerline',
|
||||||
|
Reference in New Issue
Block a user