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.
- Host: GitHub
- URL: https://github.com/whoxer/my-vimrc
- Owner: whoxer
- Created: 2023-05-16T03:10:36.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-23T01:28:27.000Z (about 3 years ago)
- Last Synced: 2025-03-13T19:24:52.521Z (over 1 year ago)
- Topics: plugins, vim, vimrc
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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()
```