Last active
April 21, 2020 22:14
-
-
Save igorgue/a7457e473c38bc44469383c2e2322ac1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"set background=dark | |
"set background=light | |
"colorscheme danger | |
"colorscheme solarized | |
colorscheme ir_black | |
set background=dark | |
set nofoldenable | |
let NERDTreeIgnore = ['\.pyc$', '__pycache__$'] | |
set lazyredraw | |
"function CpFilename() | |
"execute "!echo" . " " . bufname("%") . " | xsel --clipboard --input" | |
"endfunction | |
"command! CpFilename call CpFilename() | |
"set completeopt-=menu | |
"set completeopt+=menuone " Show the completions UI even with only 1 item | |
"set completeopt-=longest " Don't insert the longest common text | |
"set completeopt-=preview " Hide the documentation preview window | |
"set completeopt+=noinsert " Don't insert text automatically | |
"set completeopt-=noselect " Highlight the first completion automatically | |
"let g:ycm_filetype_specific_completion_to_disable = { 'python': 1 } | |
"set complete=.,b,u,] | |
"set completeopt=menu,preview | |
nnoremap <leader>f :YcmCompleter GoTo<CR> | |
noremap <F12> :YcmCompleter GoTo<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment