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.

65 lines
1.5 KiB

9 years ago
"------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'
9 years ago
Plugin 'fatih/vim-go'
9 years ago
call vundle#end()
filetype plugin indent on
"------/VUNDLE CONFIGS-----
9 years ago
"------NORMAL CONFIGS------
colorscheme cottonmouse
"colorscheme jellybeans
9 years ago
command Mouse set mouse=a
syntax enable
au BufRead,BufNewFile *.hy set filetype=hy
"filetype plugin indent on
9 years ago
set number
9 years ago
set cursorline
9 years ago
"set showmatch
9 years ago
" tabformatting...
"set listchars=tab:\|\
"set list
9 years ago
"------/NORMAL CONFIGS-----
9 years ago
"------GO-VIM CONFIGS------
let g:go_fmt_fail_silently = 1
"let g:go_fmt_autosave = 0
"------/GO-VIM 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------