home/.vimrc

97 lines
1.9 KiB
VimL
Raw Normal View History

execute pathogen#infect()
" Theming
if $TERM != 'linux'
2020-06-01 01:33:59 -05:00
colorscheme breezy
set termguicolors
set background=light
endif
syntax on
filetype plugin indent on
2019-06-16 06:59:26 -05:00
set list
2019-06-16 07:00:34 -05:00
set listchars=tab:>·,trail
2019-03-03 14:16:46 -06:00
" Templates
let g:email = 'rehashedsalt@cock.li'
let g:user = 'Vintage Salt'
let g:license = 'MIT'
let g:templates_directory = [ '~/.vim/templates' ]
2018-11-05 17:57:00 -06:00
" Lightline
set noshowmode
let g:lightline = {
\ 'active': {
\ 'left': [
\ [ 'mode', 'paste' ],
\ [ 'readonly', 'filename', 'modified' ],
\ [ 'charvaluehex' ]
\ ],
\ 'right': [
\ [ 'lineinfo' ],
\ [ 'percent' ],
\ [ 'fileformat', 'fileencoding', 'filetype' ]
\ ]
\ },
\ 'component': {
\ 'charvaluehex': 'char: 0x%B'
\ },
\}
2020-06-01 01:33:59 -05:00
let g:lightline.colorscheme = 'breezy'
" Automatically read when a file is changed outside of Vim
set autoread
2020-03-03 05:43:42 -06:00
" Fuck autofolding
set foldmethod=syntax
set nofoldenable
" Allow buffer switching without saving
set hidden
2020-05-15 03:28:19 -05:00
" Increase buffer size
set viminfo='20,<1000,s1000
" Split and tab configuration
nnoremap <C-H> <C-W><C-H>
nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
set splitbelow
set splitright
2018-05-17 22:24:57 -05:00
" Enable modelines
set modeline
set modelines=5
" Use XA_PRIMARY clipboard by default
set clipboard=unnamedplus
" Python
au BufNewFile,BufRead *.py " Set up nice PEP8 indentation
\ set tabstop=4 |
\ set softtabstop=4 |
\ set shiftwidth=4 |
\ set textwidth=79 |
\ set expandtab |
\ set autoindent |
\ set fileformat=unix
" HTML
au BufNewFile,BufRead *.html,*.php
\ set tabstop=2 |
\ set softtabstop=2 |
\ set shiftwidth=2 |
\ set autoindent |
\ set smartindent
" Treat PHP like HTML
au BufNewFile,BufRead *.php
\ set filetype=html
2017-11-29 10:25:34 -06:00
" Miscellaneous options
set incsearch " Search while you type
set number relativenumber " Relative line numbering
set encoding=utf-8
2018-07-21 13:41:32 -05:00
set laststatus=2 " Always show statusbar
" Enable 256-color support
" All of my machines support 256-color so this should be fine
set t_Co=256