Matthew Faltys
9 years ago
2 changed files with 43 additions and 8 deletions
@ -1,14 +1,30 @@ |
|||||||
"colorscheme jellybeans |
"------VUNDLE CONFIGS------ |
||||||
colorscheme cottonmouse |
"Installation shiz |
||||||
|
""git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim |
||||||
|
set nocompatible |
||||||
|
filetype off |
||||||
|
|
||||||
|
set rtp+=~/.vim/bundle/Vundle.vim |
||||||
|
call vundle#begin() |
||||||
|
" let Vundle manage Vundle, required |
||||||
|
Plugin 'VundleVim/Vundle.vim' |
||||||
|
Plugin 'scrooloose/nerdtree' |
||||||
|
Plugin 'kien/ctrlp.vim' |
||||||
|
|
||||||
|
call vundle#end() |
||||||
|
filetype plugin indent on |
||||||
|
"------/VUNDLE CONFIGS----- |
||||||
|
|
||||||
"this stuffz goes in the theme.vim |
|
||||||
"just search for the terms 'hi Normal' and 'highlight NonText' |
|
||||||
"hi Normal ctermbg=none |
|
||||||
"highlight NonText ctermbg=none |
|
||||||
|
|
||||||
|
|
||||||
|
"------NORMAL CONFIGS------ |
||||||
|
colorscheme cottonmouse |
||||||
|
"colorscheme jellybeans |
||||||
|
"set mouse=a |
||||||
syntax enable |
syntax enable |
||||||
au BufRead,BufNewFile *.hy set filetype=hy |
au BufRead,BufNewFile *.hy set filetype=hy |
||||||
"filetype plugin indent on |
"filetype plugin indent on |
||||||
"set number |
set number |
||||||
"set cursorline |
"set cursorline |
||||||
set showmatch |
"set showmatch |
||||||
|
"------/NORMAL CONFIGS----- |
||||||
|
@ -0,0 +1,19 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim |
||||||
|
#after installing vundle, we'll have to add some shit to .vimrc, see the github page |
||||||
|
#after putting a plugin in .vimrc, we can do |
||||||
|
## :PluginInstall to install it |
||||||
|
## :PluginClean to remove it |
||||||
|
|
||||||
|
#too add plugins.. just throw the git repo in .vimrc |
||||||
|
Plugin 'scrooloose/nerdtree' |
||||||
|
#some notes for NERDTree |
||||||
|
## :NERDTree starts the browser |
||||||
|
## <ctrl>ww swaps between browser and current tab |
||||||
|
## gt next tab |
||||||
|
## gT previous tab |
||||||
|
## t open file in new tab and change to it |
||||||
|
## T open file in new tab and stay in current |
||||||
|
## q quit NERDTree |
||||||
|
## I displays hidden files |
Loading…
Reference in new issue