-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
109 lines (89 loc) · 2.1 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
syntax on
"map I :! pdflatex %<CR><CR>
"map S :! mupdf-x11 $(echo % \| sed 's/tex$/pdf/') & disown<CR><CR>
set spelllang=en_us,pt_br
set paste
set ignorecase
set smartcase
set clipboard+=unnamedplus "if 'unnamedplus' doesnt work, try 'unnamed'"
set noerrorbells
set encoding=utf8
set keymap=accents
set tabstop=4 softtabstop=4
set shiftwidth=4
set expandtab
set smartindent
set nocompatible
set wrap
set hlsearch
set linebreak
set tw=80
set smartcase
set incsearch
set nu
set relativenumber
set noswapfile
set colorcolumn=80
highlight ColorColumn ctermbg=0 guibg=lightgrey
"---
call plug#begin('~/.vim/plugged')
" Vim Stuff
Plug 'tpope/vim-fugitive'
Plug 'romainl/vim-cool'
Plug 'vim-utils/vim-man'
Plug 'ervandew/supertab'
Plug 'raimondi/delimitmate'
Plug 'majutsushi/tagbar'
Plug 'tpope/vim-surround'
Plug 'jiangmiao/auto-pairs'
Plug 'honza/vim-snippets'
Plug 'jayli/vim-easycomplete'
"Plug 'sirver/ultisnips'
Plug 'itchyny/lightline.vim'
" Markdown Stuff
Plug 'gabrielelana/vim-markdown'
" LaTeX Stuff
Plug 'vim-latex/vim-latex'
Plug 'xuhdev/vim-latex-live-preview'
Plug 'vim-scripts/matchit.zip'
Plug 'lervag/vimtex'
Plug 'poppyschmo/deoplete-latex'
Plug 'pietropate/vim-tex-conceal'
" Programming Stuff
Plug 'rkulla/pydiction'
Plug 'vim-scripts/taglist.vim'
Plug 'yggdroot/indentline'
" Themes Stuff
Plug 'morhetz/gruvbox'
Plug 'ghifarit53/tokyonight-vim'
Plug 'nlknguyen/papercolor-theme'
Plug 'junegunn/seoul256.vim'
call plug#end()
"---
colorscheme tokyonight
set background=dark
"---
if executable('rg')
let g:rg_derive_root='true'
endif
" Tokyonight Configs
let g:tokyonight_style = 'storm' " available: night, storm
let g:tokyonight_enable_italic = 1
" Vim-Cool Configs
let g:cool_total_matches = 1
" Vim-Tex-Conceal Configs
set conceallevel=1
let g:tex_conceal='abdmg'
hi Conceal ctermbg=none
" Lightline Configs
let g:lightline = {
\ 'colorscheme': 'powerline',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ],
\ [ 'readonly', 'filename', 'modified', 'msg' ] ]
\ },
\ 'component': {
\ 'msg': 'Keep Grinding'
\ },
\ }
set laststatus=2