Added LaTeX setup/auto-completion to vim
Also removed FuzzyFinder.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
*.swp
|
*.swp
|
||||||
temp.sh
|
temp.sh
|
||||||
konsole.shortcuts
|
konsole.shortcuts
|
||||||
|
dotfiles/termConfig
|
||||||
|
|||||||
@@ -61,7 +61,7 @@ fi
|
|||||||
# school
|
# school
|
||||||
alias sch="$cd_school"
|
alias sch="$cd_school"
|
||||||
alias 136="$cd_school/136"
|
alias 136="$cd_school/136"
|
||||||
alias pr2="c \"$cd_school\"/136/par/1"
|
alias pr2="$cd_school/136/par/2"
|
||||||
alias mt="ok \"$cd_school\"/136/calc-textbook.pdf"
|
alias mt="ok \"$cd_school\"/136/calc-textbook.pdf"
|
||||||
alias psy="$cd_school/psy"
|
alias psy="$cd_school/psy"
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ alias psy="$cd_school/psy"
|
|||||||
alias a1="$cd_school/209/mokkar/a1"
|
alias a1="$cd_school/209/mokkar/a1"
|
||||||
|
|
||||||
gc9l3() {
|
gc9l3() {
|
||||||
gcc -Wall -std=gnu99 -g -o split_array.out split_array.c -lm
|
gcc -Wall -std=gnu99 -g -o split_array.out split_array.c
|
||||||
./split_array.out 1 2 3
|
./split_array.out 1 2 3
|
||||||
}
|
}
|
||||||
gc9() {
|
gc9() {
|
||||||
|
|||||||
@@ -25,15 +25,26 @@ endif
|
|||||||
call plug#begin('~/.vim/plugged')
|
call plug#begin('~/.vim/plugged')
|
||||||
|
|
||||||
Plug 'vim-scripts/L9'
|
Plug 'vim-scripts/L9'
|
||||||
Plug 'vim-scripts/FuzzyFinder'
|
" Plug 'vim-scripts/FuzzyFinder'
|
||||||
Plug 'whatyouhide/vim-gotham'
|
Plug 'whatyouhide/vim-gotham'
|
||||||
Plug 'nathanaelkane/vim-indent-guides'
|
Plug 'nathanaelkane/vim-indent-guides'
|
||||||
Plug 'flazz/vim-colorschemes'
|
Plug 'flazz/vim-colorschemes'
|
||||||
Plug 'felixhummel/setcolors.vim'
|
Plug 'felixhummel/setcolors.vim'
|
||||||
Plug '907th/vim-auto-save'
|
Plug '907th/vim-auto-save'
|
||||||
Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
|
Plug 'xuhdev/vim-latex-live-preview', { 'for': 'tex' }
|
||||||
" Plug 'artur-shaik/vim-javacomplete2'
|
Plug 'lervag/vimtex'
|
||||||
" autocmd FileType java setlocal omnifunc=javacomplete#Complete
|
Plug 'Valloric/YouCompleteMe'
|
||||||
|
Plug 'ervandew/supertab'
|
||||||
|
Plug 'honza/vim-snippets'
|
||||||
|
Plug 'SirVer/ultisnips'
|
||||||
|
" make YCM compatible with UltiSnips (using supertab)
|
||||||
|
let g:ycm_key_list_select_completion = ['<C-n>', '<Down>']
|
||||||
|
let g:ycm_key_list_previous_completion = ['<C-p>', '<Up>']
|
||||||
|
let g:SuperTabDefaultCompletionType = '<C-n>'
|
||||||
|
" better key bindings for UltiSnipsExpandTrigger
|
||||||
|
let g:UltiSnipsExpandTrigger = "<tab>"
|
||||||
|
let g:UltiSnipsJumpForwardTrigger = "<tab>"
|
||||||
|
let g:UltiSnipsJumpBackwardTrigger = "<s-tab>"
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
[global_config]
|
|
||||||
inactive_color_offset = 1.0
|
|
||||||
title_font = Noto Sans 10
|
|
||||||
title_transmit_bg_color = "#3d3d3d"
|
|
||||||
[keybindings]
|
|
||||||
close_term = <Primary>w
|
|
||||||
cycle_next = <Shift>Tab
|
|
||||||
go_down = <Primary>Down
|
|
||||||
go_left = <Primary>Left
|
|
||||||
go_right = <Primary>Right
|
|
||||||
go_up = <Primary>Up
|
|
||||||
new_tab = <Primary>t
|
|
||||||
split_horiz = <Primary><Shift>e
|
|
||||||
split_vert = <Primary><Shift>o
|
|
||||||
[layouts]
|
|
||||||
[[default]]
|
|
||||||
[[[child1]]]
|
|
||||||
parent = window0
|
|
||||||
type = Terminal
|
|
||||||
[[[window0]]]
|
|
||||||
parent = ""
|
|
||||||
type = Window
|
|
||||||
[plugins]
|
|
||||||
[profiles]
|
|
||||||
[[default]]
|
|
||||||
background_image = None
|
|
||||||
copy_on_selection = True
|
|
||||||
cursor_color = "#b9b9b9"
|
|
||||||
custom_command = env TERM=xterm-256color bash
|
|
||||||
font = Monospace 8.5
|
|
||||||
foreground_color = "#0077ff"
|
|
||||||
palette = "#000000:#aa0000:#00aa00:#aa5500:#0000aa:#aa00aa:#00aaaa:#aaaaaa:#555555:#ff5555:#55ff55:#ffff55:#5555ff:#ff55ff:#55ffff:#ffffff"
|
|
||||||
scrollbar_position = hidden
|
|
||||||
use_custom_command = True
|
|
||||||
use_system_font = False
|
|
||||||
Reference in New Issue
Block a user