added vim bundle and vscode colors

This commit is contained in:
Christian Koptein 2024-05-01 18:21:20 +02:00
parent 0e4ba1d05f
commit 980ab420d5
8 changed files with 2902 additions and 8 deletions

3
.gitmodules vendored Normal file
View 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

File diff suppressed because it is too large Load Diff

1
vim/bundle/Vundle.vim Submodule

@ -0,0 +1 @@
Subproject commit 0765c5c4f485fa111f190e2d7dd89ec9f5b3f554

1
vim/bundle/command-t Submodule

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

1
vim/bundle/sparkup Submodule

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

@ -0,0 +1 @@
Subproject commit 05d7843412c4fb7d1bdafefd04462ac4db841f0f

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

43
vimrc
View File

@ -63,8 +63,8 @@ set showmode
set showcmd
" Searching
nnoremap / /\v
vnoremap / /\v
"nnoremap / /\v
"vnoremap / /\v
set hlsearch
set incsearch
set ignorecase
@ -77,8 +77,6 @@ inoremap <F1> <ESC>:set invfullscreen<CR>a
nnoremap <F1> :set invfullscreen<CR>
vnoremap <F1> :set invfullscreen<CR>
" Textmate holdouts
" Formatting
map <leader>q gqip
@ -89,12 +87,41 @@ set listchars=tab:▸\ ,eol:¬
" Or use your leader key + l to toggle on/off
map <leader>l :set list!<CR> " Toggle tabs and EOL
" Color scheme (terminal)
set t_Co=256
set background=dark
let g:solarized_termcolors=256
let g:solarized_termtrans=1
" put https://raw.github.com/altercation/vim-colors-solarized/master/colors/solarized.vim
" in ~/.vim/colors/ and uncomment:
colorscheme slate
"colorscheme slate
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