You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
810 B
38 lines
810 B
"------VUNDLE CONFIGS------ |
|
"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----- |
|
|
|
|
|
|
|
"------NORMAL CONFIGS------ |
|
colorscheme cottonmouse |
|
"colorscheme jellybeans |
|
"set mouse=a |
|
syntax enable |
|
au BufRead,BufNewFile *.hy set filetype=hy |
|
"filetype plugin indent on |
|
set number |
|
"set cursorline |
|
"set showmatch |
|
hi LineNr ctermbg=NONE |
|
hi LineNr ctermfg=DarkGrey |
|
"------/NORMAL CONFIGS----- |
|
" |
|
" |
|
"------COLOR CONFIGS------ |
|
hi LineNr ctermbg=NONE |
|
hi LineNr ctermfg=DarkGrey |
|
"------/COLOR CONFIGS-----
|
|
|