Changes before moving to skel

This commit is contained in:
Austen Adler 2018-07-02 15:42:22 -04:00
parent 01b1e15f01
commit 2421524bfb
5 changed files with 110 additions and 169 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env zsh #!/usr/bin/env bash
if [ "$1" = "lock" ];then if [ "$1" = "lock" ];then
#!/bin/bash #!/bin/bash
@ -89,7 +89,7 @@ if [ "$1" = "ping" ]; then
fi fi
if [ "$1" = "ip" ]; then if [ "$1" = "ip" ]; then
shift shift
local RET=0 RET=0
if [ "$(hostname)" = "MMLin" ]; then if [ "$(hostname)" = "MMLin" ]; then
if grep -q "$1" < <(ifconfig enp2s0f0); then if grep -q "$1" < <(ifconfig enp2s0f0); then
RET=1 RET=1
@ -109,7 +109,7 @@ if [ "$1" = "copy" ]; then
(printf '-chegg ';xsel | perl -pe 's/[^a-zA-Z ]//g;chomp()') | xsel && notify-send "Copied" || notify-send "Error" (printf '-chegg ';xsel | perl -pe 's/[^a-zA-Z ]//g;chomp()') | xsel && notify-send "Copied" || notify-send "Error"
fi fi
if [ "$1" = "screenshot" ]; then if [ "$1" = "screenshot" ]; then
\rm -f ~/last-photo/*(N) \rm -f ~/last-photo/*
sleep .2 sleep .2
#DISPLAY=:0.0 xfce4-screenshooter -r -s ~/last-photo #DISPLAY=:0.0 xfce4-screenshooter -r -s ~/last-photo
DISPLAY=:0.0 import "$HOME/last-photo/$(date +'%Y-%m-%d_%T').png" DISPLAY=:0.0 import "$HOME/last-photo/$(date +'%Y-%m-%d_%T').png"

View File

@ -1,2 +1 @@
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
PS1="$ "

View File

@ -50,7 +50,7 @@ sv () {
while (( $# > 1 )); do while (( $# > 1 )); do
if [[ "$command" == "i" ]]; then if [[ "$command" == "i" ]]; then
echo "Status of $1" echo "Status of $1"
service "$1" status rc-service "$1" status
shift shift
continue continue
fi fi
@ -61,15 +61,15 @@ sv () {
fi fi
if [[ "$command" == "r" ]]; then if [[ "$command" == "r" ]]; then
echo "Restarting $1" echo "Restarting $1"
sudo service "$1" restart sudo rc-service "$1" restart
elif [[ "$command" == "s" ]]; then elif [[ "$command" == "s" ]]; then
echo "Starting $1" echo "Starting $1"
sudo service "$1" start sudo rc-service "$1" start
elif [[ "$command" == "x" ]]; then elif [[ "$command" == "x" ]]; then
echo "Stopping $1" echo "Stopping $1"
sudo service "$1" stop sudo rc-service "$1" stop
else else
sudo service "$1" "$command" sudo rc-service "$1" "$command"
fi fi
shift shift
done done
@ -301,12 +301,12 @@ if test -f /etc/gentoo-release; then
} }
elif test -f /etc/lsb-release; then elif test -f /etc/lsb-release; then
# Ubuntu # Ubuntu
alias install='sudo apt-get --show-progress install' alias install='sudo apt install'
alias remove='sudo apt-get --show-progress remove' alias remove='sudo apt remove'
alias update='sudo apt-get update' alias update='sudo apt update'
alias upgrade='sudo apt-get --show-progress upgrade' alias upgrade='sudo apt upgrade'
alias autoremove='sudo apt-get --show-progress autoremove' alias autoremove='sudo apt autoremove'
alias updateall='sudo sh -c "apt-get update;apt-get upgrade -y;apt-get dist-upgrade -y;apt-get autoremove -y"' alias updateall='sudo sh -c "apt update;apt full-upgrade -y"'
alias search='apt-cache search' alias search='apt-cache search'
fi fi
alias ..='k ..' alias ..='k ..'

View File

@ -1,4 +1,3 @@
set-option -g default-shell /bin/zsh
#set -g mouse on #set -g mouse on
set -g status-bg black set -g status-bg black
set -g status-fg white set -g status-fg white

249
vim/vimrc
View File

@ -2,112 +2,103 @@
if has('conceal') if has('conceal')
set conceallevel=2 concealcursor=i set conceallevel=2 concealcursor=i
endif endif
let g:formatdef_my_custom_cpp = '"astyle --mode=cpp -xc --style=google -j -s2 -xG -S -K -N -xn -xl -n -p -H"' "let g:formatdef_my_custom_cpp = '"astyle --mode=cpp -xc --style=google -j -s2 -xG -S -K -N -xn -xl -n -p -H"'
let g:formatters_cpp = ['my_custom_cpp'] "let g:formatters_cpp = ['my_custom_cpp']
let g:formatdef_my_custom_java = '"astyle --mode=java -xc --style=google -j -s2 -xG -S -K -N -xn -xl -n -p -H"' "let g:formatdef_my_custom_java = '"astyle --mode=java -xc --style=google -j -s2 -xG -S -K -N -xn -xl -n -p -H"'
let g:formatters_java = ['my_custom_java'] "let g:formatters_java = ['my_custom_java']
let g:UltiSnipsUsePythonVersion=3 "let g:UltiSnipsUsePythonVersion=3
command! WW %!sudo tee > /dev/null % command! WW %!sudo tee > /dev/null %
"TODO: Fix this "TODO: Fix this
"let g:rbpt_loadcmd_toggle = 1 "let g:rbpt_loadcmd_toggle = 1
let g:indent_guides_auto_colors = 0 "let g:indent_guides_auto_colors = 0
"Required for CSC216, not needed for current classes
"autocmd FileType java set shiftwidth=3 tabstop=3 softtabstop=3 expandtab
"au FileType twig let b:AutoPairs['%']='%'
autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd guibg=darkgrey ctermbg=darkgrey autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd guibg=darkgrey ctermbg=darkgrey
autocmd VimEnter,Colorscheme * :hi IndentGuidesEven guibg=grey ctermbg=grey autocmd VimEnter,Colorscheme * :hi IndentGuidesEven guibg=grey ctermbg=grey
filetype plugin on filetype plugin on
set grepprg=grep\ -nH\ $* set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex' "let g:tex_flavor='latex'
"match Error /\s\+$/ "match Error /\s\+$/
" Basic, very important mappings { " Basic, very important mappings {
" Movement { " Movement {
"Vertical "Vertical
nnoremap gj j noremap gj j
nnoremap gk k noremap gk k
nnoremap j gj noremap j gj
nnoremap k gk noremap k gk
vnoremap gj j
vnoremap gk k
vnoremap j gj
vnoremap k gk
"Horizontal "Horizontal
nnoremap Y y$ noremap H ^
nnoremap H ^
nnoremap L $ nnoremap L $
vnoremap L $h vnoremap L $h
vnoremap H ^
nnoremap Y y$
"Move to end of line "Move to end of line
inoremap jk <End> inoremap jk <End>
inoremap kj <End> inoremap kj <End>
"Move to last character of last line "Move to last character of last line
nnoremap G G$ noremap G G$
vnoremap G G$ noremap G G$
" } " }
" Buffers { " Buffers {
"Control-key movement "Control-key movement
nnoremap <C-h> <C-w>h noremap <C-h> <C-w>h
nnoremap <C-j> <C-w>j noremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k noremap <C-k> <C-w>k
nnoremap <C-l> <C-w>l noremap <C-l> <C-w>l
"Arrow keys "Arrow keys
nnoremap <Up> <C-w>w noremap <Up> <C-w>w
nnoremap <Down> <C-w>W noremap <Down> <C-w>W
nnoremap <Left> :bp<CR> noremap <Left> :bp<CR>
nnoremap <Right> :bn<CR> noremap <Right> :bn<CR>
"Vertical and horizontal split "Vertical and horizontal split
nnoremap <C-w>\| <C-w>v<C-w>l noremap <C-w>\| <C-w>v<C-w>l
nnoremap <C-w>- <C-w>s<C-w>j noremap <C-w>- <C-w>s<C-w>j
"Close buffer "Close buffer
nnoremap <C-d> <C-w>q "noremap <C-d> <C-w>q
"Fullscreen buffer "Fullscreen buffer
nnoremap <C-w>z <C-w>_<C-w>\| noremap <C-w>z <C-w>_<C-w>\|
"Go to last buffer "Go to last buffer
nnoremap <Leader><Leader> <C-^> noremap <Leader><Leader> <C-^>
" } " }
" Misc { " Misc {
vnoremap <silent> * :call VisualSelection('f')<CR> vnoremap <silent> * :call VisualSelection('f')<CR>
vnoremap <silent> # :call VisualSelection('b')<CR> vnoremap <silent> # :call VisualSelection('b')<CR>
vnoremap ; : vnoremap ; :
nnoremap ! :!
vnoremap < <gv vnoremap < <gv
vnoremap > >gv vnoremap > >gv
noremap ! :!
"Disable F1 "Disable F1
nnoremap <F1> <nop> noremap <F1> <nop>
inoremap <F1> <nop> noremap! <F1> <nop>
vnoremap <F1> <nop>
"F2 toggle paste "F2 toggle paste
nnoremap <F2> :set invpaste<CR> noremap <F2> :set invpaste<CR>
"Better searching "Better searching
nnoremap / /\v noremap / /\v
vnoremap / /\v
"Addition and subtraction "Addition and subtraction
nnoremap + <C-a> "nnoremap + <C-a>
nnoremap - <C-x> "nnoremap - <C-x>
"Backspace remove highlights "Backspace remove highlights
nnoremap <BS> :nohlsearch<CR>g<C-g>zo noremap <BS> :nohlsearch<CR>g<C-g>
"Better save "Better save
nnoremap <Enter> :up<CR>:silent! call sy#start()<CR> nnoremap <Enter> :up<CR>
"Unmap Q "Unmap Q
nnoremap Q <Nop> noremap Q <Nop>
" } " }
" } " }
" Plugin mappings { " Plugin mappings {
"Easymotion "Easymotion
map , <Plug>(easymotion-prefix) map , <Plug>(easymotion-prefix)
"Ctrl-p "Ctrl-p
nnoremap <Leader><C-p> :CtrlPFunky<CR> "nnoremap <Leader><C-p> :CtrlPFunky<CR>
"Gundo "Gundo
nnoremap <F5> :GundoToggle<CR> "nnoremap <F5> :GundoToggle<CR>
"Easytags "Easytags
"nnoremap <Leader><Space> :CtrlPTag<CR> "nnoremap <Leader><Space> :CtrlPTag<CR>
"Replacing easytags with ctrl p buffer "Replacing easytags with ctrl p buffer
nnoremap <Leader><Space> :CtrlPBuffer<CR> "nnoremap <Leader><Space> :CtrlPBuffer<CR>
"Tagbar "Tagbar
"nnoremap <Leader><Space> :Tagbar<CR> "nnoremap <Leader><Space> :Tagbar<CR>
"Add a bundle from clipboard "Add a bundle from clipboard
nnoremap <Leader>bun G?Plug <CR>yyjp$hdi'"+gPo " \| <Esc>"+gp<Esc>:nohlsearch<CR>:up<CR>:PlugInstall "nnoremap <Leader>bun G?Plug <CR>yyjp$hdi'"+gPo " \| <Esc>"+gp<Esc>:nohlsearch<CR>:up<CR>:PlugInstall
"Automatic if/else/for/while wrappers "Automatic if/else/for/while wrappers
nnoremap <Leader>if m"Oif(){<Esc>jo}<Esc>`"v><Esc>k^wa nnoremap <Leader>if m"Oif(){<Esc>jo}<Esc>`"v><Esc>k^wa
nnoremap <Leader>else m"kAelse{<Esc>jo}<Esc>`"v><Esc> nnoremap <Leader>else m"kAelse{<Esc>jo}<Esc>`"v><Esc>
@ -121,8 +112,8 @@ let g:tex_flavor='latex'
vnoremap <Leader>rm <Esc>`<<Esc>kdd`>jddgv<<Esc> vnoremap <Leader>rm <Esc>`<<Esc>kdd`>jddgv<<Esc>
" } " }
" Trial mappings { " Trial mappings {
nnoremap <Leader>o m`o<Esc>`` "nnoremap <Leader>o m`o<Esc>``
nnoremap <Leader>O m`O<Esc>`` "nnoremap <Leader>O m`O<Esc>``
" } " }
@ -141,19 +132,15 @@ let g:tex_flavor='latex'
set conceallevel=0 set conceallevel=0
" } " }
" Misc { " Misc {
set tabstop=2 shiftwidth=2 expandtab set tabstop=2 softtabstop=2 shiftwidth=2 expandtab
set tags=./tags;/ set tags=./tags;/
set wildmode=longest,list,full set wildmode=longest,list,full
set formatoptions-=r set formatoptions-=rot
set formatoptions-=o
set diffopt+=iwhite set diffopt+=iwhite
set noesckeys set noesckeys
set shiftwidth=2
set tabstop=2
set modeline set modeline
set softtabstop=2
set expandtab set expandtab
set history=1000 set history=2048
set hidden set hidden
"set cursorline "set cursorline
set incsearch set incsearch
@ -165,8 +152,7 @@ let g:tex_flavor='latex'
set backup set backup
set backupdir=~/.vim/backup set backupdir=~/.vim/backup
set directory=~/.vim/tmp set directory=~/.vim/tmp
set undolevels=1000 set undolevels=2048
set history=500
set ttyfast set ttyfast
set fileformat=unix set fileformat=unix
set encoding=utf-8 set encoding=utf-8
@ -174,7 +160,6 @@ let g:tex_flavor='latex'
set foldmethod=indent set foldmethod=indent
set foldnestmax=10 set foldnestmax=10
set foldlevel=2 set foldlevel=2
set relativenumber
set number set number
set background=dark set background=dark
set t_Co=256 set t_Co=256
@ -182,76 +167,45 @@ let g:tex_flavor='latex'
set nocompatible set nocompatible
set ignorecase set ignorecase
set textwidth=0 set textwidth=0
set path+=**
syntax on syntax on
" } " }
"Polyglot conflicts with another latex editor "Polyglot conflicts with another latex editor
let g:polyglot_disabled = ['latex'] let g:polyglot_disabled = ['latex']
"Symfony
let g:symfony_app_console_caller="php"
let g:symfony_app_console_path="bin/console"
"Signify "Signify
let g:signify_vcs_list = [ 'git', 'svn' ] let g:signify_vcs_list = [ 'git', 'svn' ]
let g:signify_difftool = 'diff' let g:signify_difftool = 'diff'
"CtrlP "CtrlP
let g:ctrlp_root_markers = ['.cproot'] "let g:ctrlp_root_markers = ['.cproot']
let g:ctrlp_custom_ignore = { "let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/](\.git|\.hg|\.svn|vendor)$', " \ 'dir': '\v[\/](\.git|\.hg|\.svn|vendor)$',
\ 'file': '\v\.(exe|so|dll|class)$', " \ 'file': '\v\.(exe|so|dll|class)$',
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS', " \ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
\ } " \ }
let g:ctrlp_extensions=['funky']
"Airline "Airline
let g:airline_left_sep='▶' "let g:airline_left_sep='▶'
let g:airline_right_sep='◀' "let g:airline_right_sep='◀'
let g:airline#extensions#syntastic#enabled=0 "let g:airline#extensions#syntastic#enabled=0
let g:ycm_show_diagnostics_ui=0 "let g:ycm_show_diagnostics_ui=0
let g:ycm_path_to_python_interpreter='/usr/bin/python2.7' "let g:ycm_path_to_python_interpreter='/usr/bin/python2.7'
"let g:syntastic_cpp_compiler = 'clang++' "let g:syntastic_cpp_compiler = 'clang++'
"let g:syntastic_cpp_compiler_options = ' -std=c++11 -stdlib=libc++' "let g:syntastic_cpp_compiler_options = ' -std=c++11 -stdlib=libc++'
let g:syntastic_cpp_compiler_options = ' -std=c++11' "let g:syntastic_cpp_compiler_options = ' -std=c++11'
let g:airline#extensions#whitespace#enabled=0 "let g:airline#extensions#whitespace#enabled=0
let g:airline#extensions#whitespace#show_message=0 "let g:airline#extensions#whitespace#show_message=0
let g:airline#extensions#tmuxline#enabled=1 "let g:airline#extensions#tmuxline#enabled=1
"Autoformat
let g:formatdef_my_custom_php = '"astyle --mode=php -xc -A10 -j -s2 -xG -S -K -N -xn -xl -n"'
let g:formatdef_my_custom_cpp = '"astyle --mode=c -xc -A10 -j -s2 -xG -S -K -N -xn -xl -n"'
let g:formatter_cpp = ['formatdef_my_custom_cpp']
let g:formatter_php = ['formatdef_my_custom_php']
"let g:formatprg_cpp="astyle" "let g:formatprg_cpp="astyle"
"let g:formatprg_args_expr_cpp=" --mode=c --style=1tbs -xe -k1 -j" "let g:formatprg_args_expr_cpp=" --mode=c --style=1tbs -xe -k1 -j"
" These flags don't work for some reason " These flags don't work for some reason
" -xn -xc -xl -S " -xn -xc -xl -S
"Syntastic
let g:syntastic_java_javac_classpath = "~/applications/java/junit-4.12.jar:~/applications/java/hamcrest-core-1.3.jar:~/wpilib/java/current/lib/WPILib.jar:~/wpilib/java/current/lib/NetworkTables.jar:~/git/ford-java/src"
"IndentGuides
let g:indent_guides_start_level=1
let g:indent_guides_guide_size=1
let g:indent_guides_enable_on_vim_startup=1
let g:php_refactor_command='php /usr/local/bin/refactor.phar'
function! g:UltiSnips_Complete()
call UltiSnips#ExpandSnippet()
if g:ulti_expand_res == 0
if pumvisible()
return "\<C-n>"
else
call UltiSnips#JumpForwards()
if g:ulti_jump_forwards_res == 0
return "\<TAB>"
endif
endif
endif
return ""
endfunction
"inoremap <expr><Tab> pumvisible() ? "\<C-n>" : "\<Tab>" "inoremap <expr><Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
"inoremap <Tab> pumvisible() ? "\<C-n>" : "\<Tab>" "inoremap <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
let g:UltiSnipsJumpForwardTrigger="<C-S-Q>" "let g:UltiSnipsJumpForwardTrigger="<C-S-Q>"
let g:UltiSnipsExpandTrigger="<S-Tab>" "let g:UltiSnipsExpandTrigger="<S-Tab>"
let g:UltiSnipsListSnippets="<C-e>" "let g:UltiSnipsListSnippets="<C-e>"
let g:UltiSnipsEditSplit="vertical" "let g:UltiSnipsEditSplit="vertical"
let g:ycm_key_list_select_completion = []
inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>" inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"
let loaded_matchit=1
filetype off filetype off
if has("win32") if has("win32")
call plug#begin('~/vimfiles/plugged') call plug#begin('~/vimfiles/plugged')
@ -259,31 +213,31 @@ else
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
endif endif
" Code writing { " Code writing {
Plug 'https://austenwares.com/gitea/vim/vim-autoformat', { 'on': 'Autoformat'} "Plug 'https://austenwares.com/gitea/vim/vim-autoformat', { 'on': 'Autoformat'}
"Adds autoformat command | https://github.com/Chiel92/vim-autoformat "Adds autoformat command | https://github.com/Chiel92/vim-autoformat
Plug 'https://austenwares.com/gitea/vim/vim-surround' Plug 'https://austenwares.com/gitea/vim/vim-surround'
"Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround "Surround selection in ({\"' or HTML tags | https://github.com/tpope/vim-surround
Plug 'https://austenwares.com/gitea/vim/syntastic' "Plug 'https://austenwares.com/gitea/vim/syntastic'
"Syntax checker | https://github.com/scrooloose/syntastic "Syntax checker | https://github.com/scrooloose/syntastic
Plug 'https://austenwares.com/gitea/vim/nerdtree', { 'on': 'NERDTreeToggle' } "Plug 'https://austenwares.com/gitea/vim/nerdtree', { 'on': 'NERDTreeToggle' }
"File browser | https://github.com/scrooloose/nerdtree "File browser | https://github.com/scrooloose/nerdtree
Plug 'https://austenwares.com/gitea/vim/vim-easymotion' Plug 'https://austenwares.com/gitea/vim/vim-easymotion'
"Move around quickly in a document | https://github.com/Lokaltog/vim-easymotion "Move around quickly in a document | https://github.com/Lokaltog/vim-easymotion
"Plug 'https://austenwares.com/gitea/vim/gundo.vim', { 'on': 'GundoToggle' } "Plug 'https://austenwares.com/gitea/vim/gundo.vim', { 'on': 'GundoToggle' }
"Visual undo | https://github.com/sjl/gundo.vim "Visual undo | https://github.com/sjl/gundo.vim
Plug 'https://austenwares.com/gitea/vim/vim-exchange' "Plug 'https://austenwares.com/gitea/vim/vim-exchange'
"Exchange two selections of text | https://github.com/tommcdo/vim-exchange "Exchange two selections of text | https://github.com/tommcdo/vim-exchange
Plug 'https://austenwares.com/gitea/vim/vim-repeat' "Plug 'https://austenwares.com/gitea/vim/vim-repeat'
"Repeat last tpope command with . | https://github.com/tpope/vim-repeat "Repeat last tpope command with . | https://github.com/tpope/vim-repeat
Plug 'https://austenwares.com/gitea/vim/vim-fugitive' "Plug 'https://austenwares.com/gitea/vim/vim-fugitive'
"Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive "Great Vim-Git compatibility | https://github.com/tpope/vim-fugitive
Plug 'https://austenwares.com/gitea/vim/ctrlp.vim' "Plug 'https://austenwares.com/gitea/vim/ctrlp.vim'
"Fuzzy file search | https://github.com/kien/ctrlp.vim "Fuzzy file search | https://github.com/kien/ctrlp.vim
Plug 'https://austenwares.com/gitea/vim/tabular', { 'on': 'Tab' } Plug 'https://austenwares.com/gitea/vim/tabular', { 'on': 'Tab' }
"Quickly make tables in vim | https://github.com/godlygeek/tabular "Quickly make tables in vim | https://github.com/godlygeek/tabular
Plug 'https://austenwares.com/gitea/vim/UltiSnips' "Plug 'https://austenwares.com/gitea/vim/UltiSnips'
"Adds snippet support | https://github.com/sirver/UltiSnips "Adds snippet support | https://github.com/sirver/UltiSnips
Plug 'https://austenwares.com/gitea/vim/vim-snippets' "Plug 'https://austenwares.com/gitea/vim/vim-snippets'
"Add snippets | https://github.com/honza/vim-snippets "Add snippets | https://github.com/honza/vim-snippets
Plug 'https://austenwares.com/gitea/vim/eregex.vim' Plug 'https://austenwares.com/gitea/vim/eregex.vim'
"Real regexes in vim | https://github.com/othree/eregex.vim "Real regexes in vim | https://github.com/othree/eregex.vim
@ -291,11 +245,11 @@ endif
"Git information inline | https://github.com/mhinz/vim-signify "Git information inline | https://github.com/mhinz/vim-signify
Plug 'https://austenwares.com/gitea/vim/auto-pairs' Plug 'https://austenwares.com/gitea/vim/auto-pairs'
"Automatic pairs | https://github.com/jiangmiao/auto-pairs "Automatic pairs | https://github.com/jiangmiao/auto-pairs
Plug 'https://austenwares.com/gitea/vim/YouCompleteMe' "Plug 'https://austenwares.com/gitea/vim/YouCompleteMe'
"Autocompletion | https://github.com/Valloric/YouCompleteMe "Autocompletion | https://github.com/Valloric/YouCompleteMe
"Plug 'https://austenwares.com/gitea/vim/vim-java-getset.git' "Plug 'https://austenwares.com/gitea/vim/vim-java-getset.git'
"Java getters and setters| https://austenwares.com/gitea/vim/vim-java-getset.git "Java getters and setters| https://austenwares.com/gitea/vim/vim-java-getset.git
Plug 'https://austenwares.com/gitea/vim/double-tap.git' "Plug 'https://austenwares.com/gitea/vim/double-tap.git'
"Double tap for comments "Double tap for comments
" } " }
" Style { " Style {
@ -309,23 +263,23 @@ endif
"256 color vim in terminal | https://github.com/godlygeek/csapprox "256 color vim in terminal | https://github.com/godlygeek/csapprox
" } " }
" Syntax { " Syntax {
Plug 'https://austenwares.com/gitea/vim/vimtex' "Plug 'https://austenwares.com/gitea/vim/vimtex'
"Latex | https://github.com/lervag/vimtex "Latex | https://github.com/lervag/vimtex
Plug 'https://austenwares.com/gitea/vim/vim-polyglot' Plug 'https://austenwares.com/gitea/vim/vim-polyglot'
"Many languages | https://github.com/sheerun/vim-polyglot "Many languages | https://github.com/sheerun/vim-polyglot
Plug 'https://austenwares.com/gitea/vim/vim-vimperator' "Plug 'https://austenwares.com/gitea/vim/vim-vimperator'
"Vimperator for vim | https://github.com/superbrothers/vim-vimperator "Vimperator for vim | https://github.com/superbrothers/vim-vimperator
Plug 'https://austenwares.com/gitea/vim/i3-vim-syntax' "Plug 'https://austenwares.com/gitea/vim/i3-vim-syntax'
"i3 syntax | https://github.com/PotatoesMaster/i3-vim-syntax "i3 syntax | https://github.com/PotatoesMaster/i3-vim-syntax
" } " }
" Misc { " Misc {
Plug 'https://austenwares.com/gitea/vim/flappyvird-vim', { 'on': [] } "Plug 'https://austenwares.com/gitea/vim/flappyvird-vim', { 'on': [] }
"The amazing Flappy Bird game | https://github.com/mattn/flappyvird-vim "The amazing Flappy Bird game | https://github.com/mattn/flappyvird-vim
Plug 'https://austenwares.com/gitea/vim/vim-gnupg' "Plug 'https://austenwares.com/gitea/vim/vim-gnupg'
"GPG support | https://github.com/jamessan/vim-gnupg "GPG support | https://github.com/jamessan/vim-gnupg
Plug 'https://austenwares.com/gitea/vim/vim-bracketed-paste' Plug 'https://austenwares.com/gitea/vim/vim-bracketed-paste'
"Automatic :set paste funcationality | https://github.com/ConradIrwin/vim-bracketed-paste "Automatic :set paste funcationality | https://github.com/ConradIrwin/vim-bracketed-paste
Plug 'https://austenwares.com/gitea/vim/HiCursorWords' "Plug 'https://austenwares.com/gitea/vim/HiCursorWords'
"Highlight word under cursor automatically | http://www.vim.org/scripts/script.php?script_id=4306 "Highlight word under cursor automatically | http://www.vim.org/scripts/script.php?script_id=4306
" } " }
" Unused { " Unused {
@ -345,8 +299,7 @@ if exists("+undofile")
if isdirectory($HOME . '/.vim/undo')==0 if isdirectory($HOME . '/.vim/undo')==0
:silent !mkdir -p ~/.vim/undo > /dev/null 2>&1 :silent !mkdir -p ~/.vim/undo > /dev/null 2>&1
endif endif
set undodir=./.vim-undo// set undodir=~/.vim/undo/
set undodir+=~/.vim/undo//
set undofile set undofile
endif endif
augroup autosave augroup autosave
@ -362,15 +315,11 @@ augroup vimrcEx
\ exe "normal g`\"" | \ exe "normal g`\"" |
\ endif \ endif
augroup END augroup END
if has('gui_running') "if has('gui_running')
set guioptions-=T " set guioptions-=T
else "else
set t_Co=256 " set t_Co=256
if &term=='xterm' || &term=='screen' "endif
set t_Co=256
endif
"colorscheme torte
endif
silent! colorscheme fruity silent! colorscheme fruity
function! Initialize() function! Initialize()
if has("win32") if has("win32")
@ -399,14 +348,8 @@ function! Initialize()
silent! PlugInstall silent! PlugInstall
q q
endfunction endfunction
if !exists('g:ycm_semantic_triggers')
let g:ycm_semantic_triggers = {}
endif
let g:ycm_semantic_triggers.tex = [
\ 're!\\[A-Za-z]*(ref|cite)[A-Za-z]*([^]]*])?{([^}]*, ?)*'
\ ]
set guifont=Gohu\ GohuFont set guifont=Gohu\ GohuFont
inoremap <Tab> <C-R>=g:UltiSnips_Complete()<cr> "inoremap <Tab> <C-R>=g:UltiSnips_Complete()<cr>
map <unique> <buffer> <LocalLeader>b <Plug>JavagetsetInsertBothGetterSetter "map <unique> <buffer> <LocalLeader>b <Plug>JavagetsetInsertBothGetterSetter
map <Leader>a O<Esc>:Autoformat<CR>:v/\S/d<CR>:nohlsearch<CR> "map <Leader>a O<Esc>:Autoformat<CR>:v/\S/d<CR>:nohlsearch<CR>
inoremap <expr> <CR> getline(".") =~ '^\s*\([#"]\)\s*$' ? "\<C-u>" : "\<CR>" "inoremap <expr> <CR> getline(".") =~ '^\s*\([#"]\)\s*$' ? "\<C-u>" : "\<CR>"