added vim bundle and vscode colors
This commit is contained in:
parent
0e4ba1d05f
commit
980ab420d5
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[submodule "vim/bundle/Vundle.vim"]
|
||||||
|
path = vim/bundle/Vundle.vim
|
||||||
|
url = https://github.com/VundleVim/Vundle.vim.git
|
2859
vim/autoload/plug.vim
Normal file
2859
vim/autoload/plug.vim
Normal file
File diff suppressed because it is too large
Load Diff
1
vim/bundle/Vundle.vim
Submodule
1
vim/bundle/Vundle.vim
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 0765c5c4f485fa111f190e2d7dd89ec9f5b3f554
|
1
vim/bundle/command-t
Submodule
1
vim/bundle/command-t
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit e4618dc08695fbf3a1171f12e0fc803ac4a3a19b
|
1
vim/bundle/sparkup
Submodule
1
vim/bundle/sparkup
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit d400a570bf64b0c216aa7c8e1795820b911a7404
|
1
vim/bundle/vim-code-dark
Submodule
1
vim/bundle/vim-code-dark
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 05d7843412c4fb7d1bdafefd04462ac4db841f0f
|
1
vim/bundle/vim-fugitive
Submodule
1
vim/bundle/vim-fugitive
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit dac8e5c2d85926df92672bf2afb4fc48656d96c7
|
43
vimrc
43
vimrc
@ -63,8 +63,8 @@ set showmode
|
|||||||
set showcmd
|
set showcmd
|
||||||
|
|
||||||
" Searching
|
" Searching
|
||||||
nnoremap / /\v
|
"nnoremap / /\v
|
||||||
vnoremap / /\v
|
"vnoremap / /\v
|
||||||
set hlsearch
|
set hlsearch
|
||||||
set incsearch
|
set incsearch
|
||||||
set ignorecase
|
set ignorecase
|
||||||
@ -77,8 +77,6 @@ inoremap <F1> <ESC>:set invfullscreen<CR>a
|
|||||||
nnoremap <F1> :set invfullscreen<CR>
|
nnoremap <F1> :set invfullscreen<CR>
|
||||||
vnoremap <F1> :set invfullscreen<CR>
|
vnoremap <F1> :set invfullscreen<CR>
|
||||||
|
|
||||||
" Textmate holdouts
|
|
||||||
|
|
||||||
" Formatting
|
" Formatting
|
||||||
map <leader>q gqip
|
map <leader>q gqip
|
||||||
|
|
||||||
@ -89,12 +87,41 @@ set listchars=tab:▸\ ,eol:¬
|
|||||||
" Or use your leader key + l to toggle on/off
|
" Or use your leader key + l to toggle on/off
|
||||||
map <leader>l :set list!<CR> " Toggle tabs and EOL
|
map <leader>l :set list!<CR> " Toggle tabs and EOL
|
||||||
|
|
||||||
" Color scheme (terminal)
|
|
||||||
set t_Co=256
|
set t_Co=256
|
||||||
set background=dark
|
set background=dark
|
||||||
let g:solarized_termcolors=256
|
let g:solarized_termcolors=256
|
||||||
let g:solarized_termtrans=1
|
let g:solarized_termtrans=1
|
||||||
" put https://raw.github.com/altercation/vim-colors-solarized/master/colors/solarized.vim
|
"colorscheme slate
|
||||||
" in ~/.vim/colors/ and uncomment:
|
|
||||||
colorscheme slate
|
|
||||||
set mouse=
|
set mouse=
|
||||||
|
|
||||||
|
filetype off " required
|
||||||
|
|
||||||
|
" set the runtime path to include Vundle and initialize
|
||||||
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
|
call vundle#begin()
|
||||||
|
" alternatively, pass a path where Vundle should install plugins
|
||||||
|
"call vundle#begin('~/some/path/here')
|
||||||
|
|
||||||
|
" let Vundle manage Vundle, required
|
||||||
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
|
Plugin 'tomasiser/vim-code-dark'
|
||||||
|
" The following are examples of different formats supported.
|
||||||
|
" Keep Plugin commands between vundle#begin/end.
|
||||||
|
" plugin on GitHub repo
|
||||||
|
Plugin 'tpope/vim-fugitive'
|
||||||
|
" plugin from http://vim-scripts.org/vim/scripts.html
|
||||||
|
" Plugin 'L9'
|
||||||
|
" Git plugin not hosted on GitHub
|
||||||
|
Plugin 'git://git.wincent.com/command-t.git'
|
||||||
|
" git repos on your local machine (i.e. when working on your own plugin)
|
||||||
|
" The sparkup vim script is in a subdirectory of this repo called vim.
|
||||||
|
" Pass the path to set the runtimepath properly.
|
||||||
|
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
||||||
|
" Install L9 and avoid a Naming conflict if you've already installed a
|
||||||
|
" different version somewhere else.
|
||||||
|
" Plugin 'ascenator/L9', {'name': 'newL9'}
|
||||||
|
|
||||||
|
" All of your Plugins must be added before the following line
|
||||||
|
call vundle#end() " required
|
||||||
|
filetype plugin indent on " required
|
||||||
|
colorscheme codedark
|
||||||
|
Loading…
Reference in New Issue
Block a user