aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authorgxlin <[email protected]>2021-06-23 22:35:32 +0800
committergxlin <[email protected]>2021-06-24 09:59:52 +0800
commit2167ca7190d34e0287a44f9b829dbd5cc7a2d35f (patch)
tree97c4b7224655412eab4bf251b32145e873734305 /.vim
parentf456d790b007c3841549ec35a996483135cceec3 (diff)
downloaddotfiles-2167ca7190d34e0287a44f9b829dbd5cc7a2d35f.tar.gz
dotfiles-2167ca7190d34e0287a44f9b829dbd5cc7a2d35f.tar.bz2
dotfiles-2167ca7190d34e0287a44f9b829dbd5cc7a2d35f.zip
Add git-crypt and some config about maildir
Diffstat (limited to '.vim')
-rw-r--r--.vim/init.vim5
-rw-r--r--.vim/plugins/general.plug1
-rw-r--r--.vim/plugins/misc.plug5
3 files changed, 6 insertions, 5 deletions
diff --git a/.vim/init.vim b/.vim/init.vim
index 7f2fbdc..275e838 100644
--- a/.vim/init.vim
+++ b/.vim/init.vim
@@ -48,9 +48,6 @@ if has("gui_running")
endif
endif
-if has("macunix")
-endif
-
" Identation
set autoindent
@@ -107,7 +104,7 @@ nnoremap <leader>cd :cd %:p:h<CR> :pwd<CR>
source ~/.dotfiles/.vim/plugins/init.vim
source ~/.dotfiles/.vim/keybindings.vim
-silent colorscheme onehalfdark
+silent colorscheme onedark
highlight Pmenu ctermbg=grey
set exrc
diff --git a/.vim/plugins/general.plug b/.vim/plugins/general.plug
index fd57452..4bbc709 100644
--- a/.vim/plugins/general.plug
+++ b/.vim/plugins/general.plug
@@ -4,6 +4,7 @@ Plug 'Valloric/YouCompleteMe', {
\ 'for': ['python', 'cpp', 'go', 'gdscript']
\ }
Plug 'dense-analysis/ale'
+Plug 'sheerun/vim-polyglot'
let g:ycm_language_server = []
let g:Lf_RootMarkers = []
diff --git a/.vim/plugins/misc.plug b/.vim/plugins/misc.plug
index f79b438..34de763 100644
--- a/.vim/plugins/misc.plug
+++ b/.vim/plugins/misc.plug
@@ -10,4 +10,7 @@ nnoremap <F10> :call asyncrun#quickfix_toggle(6)<cr>
Plug 'mhinz/vim-signify'
Plug 'tpope/vim-unimpaired'
Plug 'godlygeek/tabular'
-Plug 'sonph/onehalf', { 'rtp': 'vim' }
+
+" colorscheme
+" Plug 'sonph/onehalf', { 'rtp': 'vim' }
+Plug 'joshdick/onedark.vim'