Last active
September 1, 2021 04:07
-
-
Save uplus/55455431361054799a9688926ad9453e 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 debug=throw | |
" git ls-files | grep -Ev 'init.vim|.gitignore' | xargs rm | |
language message C | |
scriptencoding utf-8 | |
set shell=/bin/sh | |
let g:netrw_nogx = 1 | |
let g:loaded_node_provider = 0 | |
let g:loaded_perl_provider = 0 | |
let g:loaded_python_provider = 0 | |
let g:loaded_ruby_provider = 0 | |
let g:python3_host_prog = '/usr/bin/python3' | |
set clipboard+=unnamedplus | |
set smartcase | |
set tabstop=2 shiftwidth=2 shiftwidth=2 | |
let $CACHE = $HOME . '/.cache' | |
execute ' set runtimepath^=' . expand('$CACHE/dein') . '/repos/github.com/Shougo/dein.vim' | |
let s:path = expand('$CACHE/dein') | |
if dein#load_state(s:path) | |
call dein#begin(s:path, [expand('<sfile>')]) | |
" call dein#add('Shougo/deoplete.nvim') | |
call dein#end() | |
call dein#save_state() | |
endif | |
set secure |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment