a whole bunch of changes over a long time
This commit is contained in:
parent
7c3e1c7fae
commit
cc0bb4605e
6 changed files with 21 additions and 1 deletions
|
@ -5,3 +5,8 @@ alias ls='ls --color=auto'
|
||||||
|
|
||||||
alias functions="grep \(\) ~/.bash_functions | grep -E -v '\#|\*'"
|
alias functions="grep \(\) ~/.bash_functions | grep -E -v '\#|\*'"
|
||||||
alias Grep='grep'
|
alias Grep='grep'
|
||||||
|
alias dict='/usr/bin/sdcv'
|
||||||
|
alias wiki='/usr/bin/python2 /home/booboy/bin/mygit/wikipedia_search/wikipedia_search.py'
|
||||||
|
alias btc='curl -sSL https://coinbase.com/api/v1/prices/historical | head -n 1 | sed "s|^.*,|$|" | sed "s|\(\.[0-9]$\)|\10|"'
|
||||||
|
alias rfc="/home/booboy/bin/mygit/rfc/rfc.sh"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
let g:netrw_dirhistmax =10
|
let g:netrw_dirhistmax =10
|
||||||
let g:netrw_dirhist_cnt =4
|
let g:netrw_dirhist_cnt =7
|
||||||
let g:netrw_dirhist_1='/home/booboy/bin/git_programs/dotfiles/install'
|
let g:netrw_dirhist_1='/home/booboy/bin/git_programs/dotfiles/install'
|
||||||
let g:netrw_dirhist_2='/home/booboy/bin/git/get_weather.py'
|
let g:netrw_dirhist_2='/home/booboy/bin/git/get_weather.py'
|
||||||
let g:netrw_dirhist_3='/home/booboy/bin/git/get_weather/.git'
|
let g:netrw_dirhist_3='/home/booboy/bin/git/get_weather/.git'
|
||||||
let g:netrw_dirhist_4='/var/www/html/brendan.mcdevitt.tech/_layouts'
|
let g:netrw_dirhist_4='/var/www/html/brendan.mcdevitt.tech/_layouts'
|
||||||
|
let g:netrw_dirhist_5='/usr/local/vm/vagrant_scripts/.git'
|
||||||
|
let g:netrw_dirhist_6='/etc/firewalld/services'
|
||||||
|
let g:netrw_dirhist_7='/home/booboy/bin/mygit/security_python_scripts/.git'
|
||||||
|
|
1
.vim/bundle/.vundle/script-names.vim-scripts.org.json
Normal file
1
.vim/bundle/.vundle/script-names.vim-scripts.org.json
Normal file
File diff suppressed because one or more lines are too long
1
.vim/bundle/syntastic
Submodule
1
.vim/bundle/syntastic
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 4b93dffbd98fd3885ee7c4fcedaa65cf5b72f56d
|
1
.vim/pack/git-plugins/start/ale
Submodule
1
.vim/pack/git-plugins/start/ale
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 1568bf81281507aaaa8c71af85e244e94bd2924c
|
9
.vimrc
9
.vimrc
|
@ -53,3 +53,12 @@ set autoindent " align the new line indent with the previous line
|
||||||
set fileformat=unix
|
set fileformat=unix
|
||||||
|
|
||||||
set encoding=utf-8
|
set encoding=utf-8
|
||||||
|
let g:syntastic_check_on_open = 1
|
||||||
|
|
||||||
|
|
||||||
|
" Uncomment the following to have Vim jump to the last position when
|
||||||
|
" reopening a file
|
||||||
|
if has("autocmd")
|
||||||
|
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
|
||||||
|
\| exe "normal! g'\"" | endif
|
||||||
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue