From 1143801d27f8e9b6554330880417fc9668a6ef07 Mon Sep 17 00:00:00 2001 From: Geezus Date: Fri, 26 Apr 2019 15:04:58 -0500 Subject: [PATCH] Revert "push my_configs to custom repo" This reverts commit 57f0bbc7c364b680a2b002e5ebfa379dd03c2dc1. --- .gitignore | 4 ++-- .gitmodules | 4 ---- my_configs.vim | 53 -------------------------------------------------- 3 files changed, 2 insertions(+), 59 deletions(-) delete mode 100644 .gitmodules delete mode 100644 my_configs.vim diff --git a/.gitignore b/.gitignore index b477f044..55273366 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ temp_dirs/yankring_history_v2.txt sources_forked/yankring/doc/tags sources_non_forked/tlib/doc/tags sources_non_forked/ctrlp.vim/doc/tags* -#my_plugins/ -#my_configs.vim +my_plugins/ +my_configs.vim tags .DS_Store diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 8072bc94..00000000 --- a/.gitmodules +++ /dev/null @@ -1,4 +0,0 @@ -[submodule "my_plugins/cheat.sh-vim"] - url = https://github.com/dbeniamine/cheat.sh-vim.git -[submodule "my_plugins/vizardry"] - url = https://github.com/dbeniamine/vizardry.git diff --git a/my_configs.vim b/my_configs.vim deleted file mode 100644 index c4a15dcc..00000000 --- a/my_configs.vim +++ /dev/null @@ -1,53 +0,0 @@ -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => Cheat.sh -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -let g:CheatDoNotReplaceKeywordPrg=1 - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => Colorscheme -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -"Neovim -colorscheme gruvbox - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => Vizardry -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -let g:VizardryGitMethod="submodule add" -let g:VizardryGitBaseDir="~\.vim_runtime\my_plugins" -let g:VizardryCommitMsgs={'Invoke': "[Vizardry] Invoked vim submodule:", - \'Banish': "[Vizardry] Banished vim submodule:", - \'Vanish': "[Vizardry] Vanished vim submodule:", - \'Evolve': "[Vizardry] Evolved vim submodule:", - \} - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => Windows Clipboard -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -noremap y "*y -noremap p "*p -noremap y "+y -noremap p "+p - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" => lightline -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -let g:lightline = { - \ 'colorscheme': 'gruvbox', - \ 'active': { - \ 'left': [ ['mode', 'paste'], - \ ['fugitive', 'gitbranch', 'readonly', 'filename', 'modified'] ], - \ 'right': [ [ 'lineinfo' ], ['percent'] ] - \ }, - \ 'component': { - \ 'readonly': '%{&filetype=="help"?"":&readonly?"🔒":""}', - \ 'modified': '%{&filetype=="help"?"":&modified?"+":&modifiable?"":"-"}', - \ 'fugitive': '%{exists("*fugitive#head")?fugitive#head():""}' - \ }, - \ 'component_visible_condition': { - \ 'readonly': '(&filetype!="help"&& &readonly)', - \ 'modified': '(&filetype!="help"&&(&modified||!&modifiable))', - \ 'fugitive': '(exists("*fugitive#head") && ""!=fugitive#head())' - \ }, - \ 'separator': { 'left': ' ', 'right': ' ' }, - \ 'subseparator': { 'left': ' ', 'right': ' ' } - \ }