this repo has no description
1
fork

Configure Feed

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

Remove unneeded configs

+5 -156
+1 -1
Makefile
··· 5 5 6 6 export PWD = $(shell pwd) 7 7 8 - TARGETS ?= fish bin nvim tmux git conky gdb ruby utils 8 + TARGETS ?= fish bin nvim git ruby utils 9 9 10 10 all: $(TARGETS) 11 11
+1 -1
bin/Makefile
··· 3 3 install: 4 4 @echo 'Add $(PWD) to your $$PATH' 5 5 6 - .PHONY: $(FILES) 6 + .PHONY: install
-9
conky/Makefile
··· 1 - PWD = $(shell pwd) 2 - 3 - install: 4 - $(LN) ${PWD}/config ${HOME}/.conkyrc 5 - 6 - clean: 7 - rm ${HOME}/.conkyrc 8 - 9 - .PHONY: install clean
-41
conky/config
··· 1 - -- vi: ft=lua 2 - conky.config = { 3 - -- Conky settings 4 - update_interval = 1, 5 - 6 - override_utf8_locale = true, 7 - 8 - double_buffer = true, 9 - no_buffers = true, 10 - 11 - -- Window specifications 12 - own_window = true, 13 - own_window_type = 'dock', 14 - own_window_transparent = true, 15 - own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', 16 - 17 - border_inner_margin = 0, 18 - border_outer_margin = 0, 19 - 20 - alignment = 'bottom_left', 21 - gap_x = 100, 22 - gap_y = 100, 23 - 24 - -- Graphics settings 25 - draw_shades = false, 26 - draw_outline = false, 27 - draw_borders = false, 28 - draw_graph_borders = false, 29 - 30 - -- Text settings 31 - use_xft = true, 32 - font = 'Squarish Sans CT:size=30', 33 - 34 - default_color = '#16A6EE', 35 - }; 36 - 37 - conky.text = [[ 38 - ${voffset 10}${time %A}${font}${voffset -10} 39 - ${voffset 10}${time %d} ${time %B}${font}${voffset -10} 40 - ${voffset 10}${font Squarish Sans CT:size=100}${time %H:%M}${font}${voffset -10} 41 - ]];
-1
gdb/.gitignore
··· 1 - /dashboard
-12
gdb/Makefile
··· 1 - PWD = $(shell pwd) 2 - 3 - install: dashboard 4 - $(LN) ${PWD}/dashboard ${HOME}/.gdbinit 5 - 6 - dashboard: 7 - $(WGET) -O$@ http://git.io/.gdbinit 8 - 9 - clean: 10 - rm ${HOME}/.gdbinit 11 - 12 - .PHONY: dashboard install clean
+1 -1
nvim/autoload/plug.vim
··· 1089 1089 1090 1090 if a:event == 'stdout' 1091 1091 let complete = empty(a:data[-1]) 1092 - let lines = map(filter(a:data, 'len(v:val) > 0'), 'split(v:val, "[\r\n]")[-1]') 1092 + let lines = map(filter(a:data, 'v:val =~ "[^\r\n]"'), 'split(v:val, "[\r\n]")[-1]') 1093 1093 call extend(self.lines, lines) 1094 1094 let self.result = join(self.lines, "\n") 1095 1095 if !complete
+1 -2
nvim/init.vim
··· 37 37 Plug 'tommcdo/vim-exchange' 38 38 Plug 'tpope/vim-commentary' 39 39 Plug 'tpope/vim-surround' 40 - Plug 'Raimondi/delimitMate' 40 + Plug 'jiangmiao/auto-pairs' 41 41 Plug 'tpope/vim-endwise' 42 42 Plug 'tpope/vim-rails' 43 43 44 44 " Build & Configuration 45 45 Plug 'benekastah/neomake' 46 46 Plug 'tpope/vim-projectionist' 47 - Plug 'editorconfig/editorconfig-vim' 48 47 49 48 " Utils 50 49 Plug 'mbbill/undotree', { 'on': 'UndotreeToggle' }
+1 -5
nvim/plugin/vsearch.vim
··· 11 11 function! s:VSetSearch(type, ...) 12 12 let temp = @@ 13 13 if a:0 14 - silent exe "normal! gvy" 14 + silent exe "norm! gvy" 15 15 elseif a:type == 'line' 16 16 silent exe "normal! '[V']y" 17 17 else ··· 23 23 let @@ = temp 24 24 endfunction 25 25 26 - nnoremap <Plug>(vsearch-change-motion-forward) :<C-u>set opfunc=<SID>VSetSearch<CR>g@ 27 - 28 26 xnoremap <Plug>(vsearch-search-selected-forward) :<C-u>call <SID>VSetSearch(visualmode(), 1)<CR>/<CR> 29 27 xnoremap <Plug>(vsearch-search-selected-backward) :<C-u>call <SID>VSetSearch(visualmode(), 1)<CR>?<CR> 30 28 31 29 xnoremap <Plug>(vsearch-change-selected-forward) :<C-u>call <SID>VSetSearch(visualmode(), 1)<CR>:set hlsearch<CR>cgn 32 30 xnoremap <Plug>(vsearch-change-selected-backward) :<C-u>call <SID>VSetSearch(visualmode(), 1)<CR>:set hlsearch<CR>cgN 33 - 34 - nmap s <Plug>(vsearch-change-motion-forward) 35 31 36 32 xmap * <Plug>(vsearch-search-selected-forward) 37 33 xmap # <Plug>(vsearch-search-selected-backward)
screenshot.png

This is a binary file and will not be displayed.

-5
tmux/.gitignore
··· 1 - /plugins/* 2 - !/plugins/tpm 3 - 4 - /resurrect 5 - /sidebar
-10
tmux/Makefile
··· 1 - PWD = $(shell pwd) 2 - 3 - install: 4 - $(LN) ${PWD}/init.tmux ${HOME}/.tmux.conf 5 - $(LN) ${PWD} ${HOME}/.tmux 6 - 7 - clean: 8 - rm ${HOME}/.tmux.conf ${HOME}/.tmux 9 - 10 - .PHONY: install clean
-49
tmux/init.tmux
··· 1 - unbind C-b 2 - set -g prefix C-q 3 - 4 - set -g mouse on 5 - 6 - set -g set-titles on 7 - 8 - source "$HOME/.tmux/themes/agnoster.tmux" 9 - 10 - set -g default-command "reattach-to-user-namespace -l $SHELL" 11 - 12 - # Smart pane switching with awareness of vim splits 13 - is_vim='echo "#{pane_current_command}" | grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"' 14 - bind -n C-h if-shell "$is_vim" "send-keys Escape \"[104;5u\"" "select-pane -L" 15 - bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D" 16 - bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U" 17 - bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" 18 - bind -n C-\ if-shell "$is_vim" "send-keys C-\\" "select-pane -l" 19 - 20 - # Allow sending prefix to child 21 - bind-key J command-prompt -p "Join pane from:" "join-pane -s '%%'" 22 - bind-key S command-prompt -p "Send pane to:" "join-pane -t '%%'" 23 - 24 - # Start windows and panes at 1, not 0 25 - set -g base-index 1 26 - set -g pane-base-index 1 27 - 28 - set -g @sidebar-tree-command 'tree -aCI "tmp|bundle|coverage|target|node_modules|.git|log"' 29 - set -g @sidebar-tree-width '50' 30 - 31 - set -g @continuum-restore 'on' 32 - 33 - # List of plugins 34 - set -g @plugin 'tmux-plugins/tpm' 35 - set -g @plugin 'tmux-plugins/tmux-sensible' 36 - 37 - set -g @plugin 'tmux-plugins/tmux-yank' 38 - set -g @plugin 'tmux-plugins/tmux-sidebar' 39 - set -g @plugin 'tmux-plugins/tmux-resurrect' 40 - set -g @plugin 'tmux-plugins/tmux-continuum' 41 - set -g @plugin 'Morantron/tmux-fingers' 42 - 43 - # Initialize TMUX plugin manager 44 - run "$HOME/.tmux/plugins/tpm/tpm" 45 - 46 - setw -g mode-keys vi 47 - set-option -ga terminal-overrides ",xterm-256color:Tc" 48 - 49 - # vim: ft=tmux
-19
tmux/themes/agnoster.tmux
··· 1 - set -g status-fg colour21 2 - set -g status-bg colour00 3 - 4 - set -g status-left-length 30 5 - set -g status-left '#[fg=colour00,bg=colour08,nobold] #S #[fg=colour08,bg=colour00,nobold]' 6 - 7 - set -g status-right '#(reattach-to-user-namespace tmux-airline #{client_width})' 8 - set -g status-right-length 150 9 - 10 - set -g window-status-format "#[fg=colour08,bg=colour00] #I  #W#[default]" 11 - set -g window-status-current-format "#[fg=colour00,bg=colour08] #[fg=colour00]#I  #W #[fg=colour08,bg=colour00,nobold]" 12 - 13 - set-window-option -g window-status-fg colour08 14 - set-window-option -g window-status-activity-attr none 15 - set-window-option -g window-status-bell-attr none 16 - set-window-option -g window-status-activity-fg yellow 17 - set-window-option -g window-status-bell-fg red 18 - 19 - # vim: ft=tmux