Public configs
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.
 
 
 
 

56 lines
1.3 KiB

"------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-----
"------STATUS LINE-------
function Themeit()
set noshowmode
set noruler
set laststatus=2
set statusline=
set statusline=[%t] " full filename
set statusline+=[%{''.(&fenc!=''?&fenc:&enc).''}] " Encoding
set statusline+=%= " right align
set statusline+=%14.([%l:%c%V]%) " line and column
set statusline+=[%P\] " percentage of file
"set statusline+=\ " spaces
set statusline+=[%{strftime('%H:%M')}] " time
endfunction
" now this only runs when we call 'themeblastr'
command Themeblastr exec Themeit()
"------/STATUS LINE------