Skip to content

Commit e53098b

Browse files
author
Reed Allman
committed
ding fries are done
1 parent 55d1231 commit e53098b

File tree

3 files changed

+25
-16
lines changed

3 files changed

+25
-16
lines changed

.tmux.conf

+2
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,5 @@ set-window-option -g window-status-current-attr bright
4646
set -g message-fg white
4747
set -g message-bg black
4848
set -g message-attr bright
49+
50+
set -sg escape-time 0

.vimrc

+13-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
set nocompatible " be iMproved
2-
filetype off " required!
32

4-
"" ======== plugin manager -- I guess this changes yearly now==========
3+
" ======== plugin manager -- I guess this changes yearly now==========
54

65
" install plugin manager of the week if fresh system
76
let iCanHazPlugins=1
@@ -69,6 +68,7 @@ set showmode "show current mode
6968
set visualbell "stop yelling at me
7069
set autoread "reload files changed outside vim
7170
set t_Co=256 "why god?
71+
"set term=xterm-256color "colors
7272
set re=1 "rubys were slow :(
7373
set ttyfast "speeds
7474
set lazyredraw "rabbits
@@ -80,9 +80,9 @@ if executable('/usr/bin/ruby')
8080
let g:ruby_path="/usr/bin/ruby" "ruby is bad and should feel bad
8181
endif
8282

83-
"" remappings
84-
let mapleader="," "remap leader to ,
85-
set pastetoggle=<F2> "quit indenting yo shit
83+
" remappings
84+
let mapleader="," "remap leader to ,
85+
set pastetoggle=<F2> "quit indenting yo shit
8686
noremap <silent> <leader>l :noh<CR>
8787
noremap <silent> <leader>d :bd<CR>
8888
@@ -120,9 +120,9 @@ augroup vimrcEx
120120
"" Don't do it for commit messages, when the position is invalid, or when
121121
"" inside an event handler (happens when dropping a file on gvim).
122122
autocmd BufReadPost *
123-
\ if &ft != 'gitcommit' && line("'\"") > 0 && line("'\"") <= line("$") |
124-
\ exe "normal g`\"" |
125-
\ endif
123+
\ if &ft != 'gitcommit' && line("'\"") > 0 && line("'\"") <= line("$") |
124+
\ exe "normal g`\"" |
125+
\ endif
126126

127127
"" Set syntax highlighting for specific file types
128128
autocmd BufRead,BufNewFile *.md set filetype=markdown
@@ -194,17 +194,16 @@ syntax on
194194
"gitgutter color
195195
hi clear SignColumn
196196
" bg
197-
hi Normal ctermbg=none guibg=none
197+
hi Normal ctermbg=NONE guibg=NONE
198198
" line numbers
199-
hi CursorLineNr ctermbg=none guibg=none
200-
hi LineNr ctermbg=none guibg=none
199+
hi CursorLineNr ctermbg=NONE guibg=NONE
200+
hi LineNr ctermbg=NONE guibg=NONE
201201
" whack bg
202-
hi NonText ctermbg=none guibg=none
202+
hi NonText ctermbg=NONE guibg=NONE
203203
" listchars (tab,EOL)
204-
hi SpecialKey ctermbg=none guibg=none ctermfg=238 guifg=#444444
204+
hi SpecialKey ctermbg=NONE guibg=NONE ctermfg=238 guifg=#444444
205205

206206
" =========== go stuffs ============
207-
let g:go_fmt_command = "goimports"
208207
let g:neomake_go_enabled_makers = ['go']
209208
let g:neomake_verbose=0
210209

.zshrc

+10-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ source $ZSH/oh-my-zsh.sh
5353

5454
#aliases
5555
#everybody
56-
alias vi=vim
5756
alias gi='go install'
5857
alias gir='go install && `basename $PWD`'
5958
alias gob='go build'
@@ -67,9 +66,18 @@ alias tmux='tmux -2'
6766
alias bb='brew update && brew upgrade'
6867

6968
#linux
70-
alias uu='sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get -y dist-upgrade'
69+
alias uu='sudo apt update && sudo apt -y upgrade && sudo apt -y dist-upgrade && sudo apt -y autoremove'
7170

7271
export GOPATH=$HOME/dev/gocode
7372
export GOROOT=/usr/local/src/go
7473
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
7574
export GO15VENDOREXPERIMENT=1
75+
76+
export CC=clang
77+
export CXX=clang++
78+
79+
alias conflicts='vi $(ag -l "<<<<<<<")'
80+
alias vim=nvim
81+
alias vi=nvim
82+
export TERM=xterm-256color
83+
#export NVIM_TUI_ENABLE_TRUE_COLOR=1

0 commit comments

Comments
 (0)