An open API service indexing awesome lists of open source software.

https://github.com/whoxer/my-vimrc

As configurações do meu vim.
https://github.com/whoxer/my-vimrc

plugins vim vimrc

Last synced: about 1 year ago
JSON representation

As configurações do meu vim.

Awesome Lists containing this project

README

          

# my-vimrc

```vim
" whoxer vimrc |
" --------------

set number
set mouse=a
set title
set cursorline

set encoding=utf-8 " Importante para o YCM

let g:ycm_global_ycm_extra_conf = '~/.vim/.ycm_extra_conf.py'
set completeopt-=preview
let g:ycm_show_diagnostics_ui = 0

map q :q
map :NERDTreeToggle
map :w

let g:ycm_language_server =
\ [{
\ 'name': 'ccls',
\ 'cmdline': [ 'ccls' ],
\ 'filetypes': [ 'c', 'cpp', 'cuda', 'objc', 'objcpp' ],
\ 'project_root_files': [ '.ccls-root', 'compile_commands.json' ]
\ }]

let g:ycm_clangd_args=['--header-insertion=never']
let g:ycm_key_list_select_completion = ['', '']
let g:ycm_key_list_previous_completion = ['', '']
let g:SuperTabDefaultCompletionType = ''
let g:UltiSnipsExpandTrigger = ""
let g:UltiSnipsJumpForwardTrigger = ""
let g:UltiSnipsJumpBackwardTrigger = ""

call plug#begin('~/.vim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'preservim/nerdtree'
Plug 'tpope/vim-surround'
Plug 'junegunn/vim-easy-align'
Plug 'https://github.com/jiangmiao/auto-pairs.git'
Plug 'rainglow/vim'
Plug 'ycm-core/YouCompleteMe'
Plug 'jiangmiao/auto-pairs'
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'ervandew/supertab'
call plug#end()

```