this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup directories

+131 -21
+13 -10
Makefile
··· 1 - LNFLAGS=-rsiT 2 - LN=ln $(LNFLAGS) 1 + LNFLAGS = -rsiT 2 + export LN = ln $(LNFLAGS) 3 3 4 - WGET=wget 4 + export WGET = wget -Nq --show-progress 5 5 6 - XDG_CONFIG_HOME ?= ${HOME}/.config 6 + export XDG_CONFIG_HOME ?= ${HOME}/.config 7 7 8 - all: neovim lein tmux 8 + all: nvim lein tmux 9 + 10 + git: 11 + git config --global include.path '~/.dotfiles/git/config' 9 12 10 - neovim: 11 - $(LN) nvim $(XDG_CONFIG_HOME)/nvim 12 - nvim +PlugUpdate +qall 13 + nvim: 14 + $(MAKE) -C $@ install 13 15 14 16 lein: 15 17 $(WGET) -Obin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein 16 18 chmod +x bin/lein 17 19 18 20 tmux: 19 - $(LN) tmux.conf ${HOME}/.tmux.conf 20 - $(LN) tmux ${HOME}/.tmux 21 + $(MAKE) -C $@ install 22 + 23 + .PHONY: tmux lein nvim all git
+1 -1
fish/init.fish
··· 1 1 set fish_greeting (fortune zen) 2 2 # set fish_key_bindings fish_vi_key_bindings 3 3 4 - set -gx PATH $HOME/.dotfiles/bin $HOME/.cabal/bin $PATH 4 + set -gx PATH $HOME/.dotfiles/bin $GOPATH/bin $HOME/.cabal/bin $PATH 5 5 6 6 if [ -z "$TMUX" ] 7 7 set -gx TERM xterm-256color
+34
git/config
··· 1 + [user] 2 + email = lukasz@niemier.pl 3 + name = Łukasz Jan Niemier 4 + [core] 5 + excludesfile = ~/.dotfiles/git/ignore 6 + editor = nvim 7 + 8 + [alias] 9 + ca = commit --amend 10 + b = branch 11 + ci = commit 12 + co = checkout 13 + lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit 14 + rci = commit --amend --reuse-message HEAD 15 + root = !git checkout master && git up 16 + squash = rebase -i @{u} 17 + st = status -sb 18 + 19 + [mergetool "fugitive"] 20 + cmd = nvim -f -c Gdiff \"$MERGED\" 21 + [merge] 22 + tool = fugitive 23 + 24 + [push] 25 + default = simple 26 + [credential] 27 + helper = cache --timeout=3600 28 + 29 + [filter "lfs"] 30 + clean = git-lfs clean %f 31 + smudge = git-lfs smudge %f 32 + required = true 33 + 34 + # vim: ft=gitconfig noexpandtab
+59
git/ignore
··· 1 + # Compiled sources {{{ 2 + *.com 3 + *.class 4 + *.dll 5 + *.exe 6 + *.o 7 + *.so 8 + # }}} 9 + # Packages {{{ 10 + *.7z 11 + *.dmg 12 + *.gz 13 + *.iso 14 + *.jar 15 + *.rar 16 + *.tar 17 + *.zip 18 + # }}} 19 + # Logs and databases {{{ 20 + *.log 21 + *.sql 22 + *.sqlite 23 + # }}} 24 + # OS generated files {{{ 25 + .DS_Store 26 + .DS_Store? 27 + ._* 28 + .Trashes 29 + ehthumbs.db 30 + Thumbs.db 31 + # }}} 32 + # Codekits {{{ 33 + .sass-cache/ 34 + .codekit-config.json 35 + config.codekit 36 + # }}} 37 + # Editors {{{ 38 + # VIM 39 + Session.vim 40 + .*.swo 41 + .*.swp 42 + *~ 43 + 44 + # Idea 45 + .idea/ 46 + 47 + # Sublime 48 + *.sublime-project 49 + 50 + # Atom 51 + .tern-project 52 + # }}} 53 + # Other {{{ 54 + .rake_tasks 55 + .meteor/ 56 + .tags 57 + # }}} 58 + 59 + # vim: foldmethod=marker foldlevel=0 foldenable
+4
nvim/Makefile
··· 1 + install: 2 + $(LN) nvim $(XDG_CONFIG_HOME)/nvim 3 + # nvim +PlugUpdate +qall # Currently doesn't work 4 + @echo 'Run NeoVim and execute `:PlugInstall`'
+5 -2
nvim/init.vim
··· 1 - " vim:foldmethod=marker:foldlevel=0:foldenable 1 + " vim: foldmethod=marker foldlevel=0 foldenable 2 2 3 3 " Plugins {{{ 4 4 call plug#begin() ··· 17 17 Plug 'ekalinin/Dockerfile.vim' 18 18 Plug 'elixir-lang/vim-elixir' 19 19 Plug 'rust-lang/rust.vim' 20 + Plug 'Blackrush/vim-gocode' 20 21 21 22 " Git 22 23 Plug 'airblade/vim-gitgutter' ··· 43 44 Plug 'Raimondi/delimitMate' 44 45 Plug 'tpope/vim-surround' 45 46 Plug 'Chiel92/vim-autoformat' 47 + Plug 'tommcdo/vim-exchange' 46 48 47 49 " Utils 48 50 Plug 'junegunn/vim-easy-align' ··· 52 54 Plug 'terryma/vim-multiple-cursors' 53 55 Plug 'tpope/vim-repeat' 54 56 Plug 'tpope/vim-unimpaired' 57 + Plug 'Shougo/vimproc.vim', { 'do': 'make' } 55 58 56 59 call plug#end() 57 60 " }}} ··· 160 163 noremap <leader>l :nohlsearch<CR> 161 164 162 165 " FuzzySearch 163 - nnoremap <silent> <C-p> :Unite -start-insert -buffer-name=files file_rec/neovim<CR> 166 + nnoremap <silent> <C-p> :Unite -start-insert -buffer-name=files file_rec/async<CR> 164 167 nnoremap <silent> <leader>/ :Ag<CR> 165 168 " }}} 166 169 " Files, backups and undo {{{
+6 -2
nvim/plugin/unite.vim
··· 1 1 call unite#filters#matcher_default#use(['matcher_fuzzy']) 2 - call unite#custom#source('buffer,file,file_rec', 'sorters', 'sorter_selecta') 2 + call unite#custom_source('buffer,file_rec/neovim,file_rec/async', 3 + \ 'sorters', 'sorter_selecta') 3 4 4 5 let g:unite_split_rule = "botright" 5 6 6 7 let g:unite_prompt = '» ' 7 8 8 - call unite#custom_source('file_rec/neovim,file_mru,file,buffer,grep', 9 + call unite#custom_source('file_rec/neovim,file_rec/async,file_mru,grep', 9 10 \ 'ignore_pattern', join([ 10 11 \ '\.git/', 11 12 \ 'vendor/', ··· 16 17 \ 'target/', 17 18 \ ], '\|')) 18 19 20 + let g:unite_source_rec_async_command = 21 + \ ['ag', '--follow', '--nocolor', '--nogroup', 22 + \ '--hidden', '-g', ''] 19 23 20 24 " Use ag for search 21 25 if executable('ag')
-6
pryrc
··· 1 - Pry.config.theme = "solarized" 2 - 3 - #Pry.commands.alias_command 'c', 'continue' 4 - #Pry.commands.alias_command 's', 'step' 5 - #Pry.commands.alias_command 'n', 'next' 6 - #Pry.commands.alias_command 'f', 'finish'
+1
ruby/gemrc
··· 1 + gem: --no-document
+5
ruby/pryrc
··· 1 + # Editor {{{ 2 + Pry.config.editor = 'nvim' 3 + # }}} 4 + 5 + Pry.config.theme = "solarized"
tmux.conf tmux/conf
+3
tmux/Makefile
··· 1 + install: 2 + $(LN) tmux/conf ${HOME}/.tmux.conf 3 + $(LN) tmux ${HOME}/.tmux