1
0
Fork 0
mirror of synced 2024-06-19 23:41:10 -04:00

add custom plugins as submodules

[master]
This commit is contained in:
Chris Morris 2019-04-09 10:20:40 -04:00
parent 5a2572df03
commit 7080e8f8b5
6 changed files with 34 additions and 2 deletions

2
.gitignore vendored
View file

@ -4,7 +4,5 @@ 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
tags
.DS_Store

9
.gitmodules vendored Normal file
View file

@ -0,0 +1,9 @@
[submodule "my_plugins/vim-polyglot"]
path = my_plugins/vim-polyglot
url = git@github.com:sheerun/vim-polyglot
[submodule "my_plugins/vim-signify"]
path = my_plugins/vim-signify
url = git@github.com:mhinz/vim-signify.git
[submodule "my_plugins/vim-snazzy"]
path = my_plugins/vim-snazzy
url = git@github.com:connorholyday/vim-snazzy.git

22
my_configs.vim Normal file
View file

@ -0,0 +1,22 @@
colorscheme snazzy
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git\|tmp\|*.log'
let g:nord_italic = 1
let g:nord_underline = 1
let g:nord_italic_comments = 1
let g:nord_uniform_status_lines = 1
let g:nord_comment_brightness = 12
let g:nord_cursor_line_number_background = 1
let g:lightline = {
\ 'colorscheme': 'snazzy',
\ 'active': {
\ 'left': [ [ 'mode', 'paste' ], [ 'readonly', 'absolutepath', 'modified' ] ],
\ }
\ }
let g:ctrlp_show_hidden = 0
setlocal foldmethod=manual
set number
set foldlevel=99999
set shiftwidth=2
set tabstop=2
set nofoldenable
map <C-W>` gg=G<C-o><C-o>

@ -0,0 +1 @@
Subproject commit ec1c94306953b678bb36572897bd218fe6c76506

@ -0,0 +1 @@
Subproject commit c4eb6e1469bcb48d77e0426e9c747a6bcc7b2014

1
my_plugins/vim-snazzy Submodule

@ -0,0 +1 @@
Subproject commit 88b88fe5342e1155e93d35beeb10b6e4c36d6e86