Compare commits
6 commits
a62bc5c4b8
...
8e8809a5a5
Author | SHA1 | Date | |
---|---|---|---|
8e8809a5a5 | |||
e77849d752 | |||
fc4ed371f0 | |||
2acbe2aa5e | |||
532e627b4e | |||
65c90853c0 |
7 changed files with 3293 additions and 33 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,5 +0,0 @@
|
|||
#Local Gitignore for Repo#
|
||||
##########################
|
||||
|
||||
# Ignore undo files
|
||||
*.un~
|
12
.gitmodules
vendored
12
.gitmodules
vendored
|
@ -1,12 +0,0 @@
|
|||
[submodule "vim/vim/pack/plugins/start/vim-fugitive"]
|
||||
path = vim/vim/pack/plugins/start/vim-fugitive
|
||||
url = https://github.com/tpope/vim-fugitive.git
|
||||
[submodule "vim/vim/pack/plugins/start/vim-unimpaired"]
|
||||
path = vim/vim/pack/plugins/start/vim-unimpaired
|
||||
url = https://github.com/tpope/vim-unimpaired.git
|
||||
[submodule "vim/vim/pack/plugins/start/vim-commentary"]
|
||||
path = vim/vim/pack/plugins/start/vim-commentary
|
||||
url = https://github.com/tpope/vim-commentary.git
|
||||
[submodule "vim/vim/pack/plugins/start/vim-polyglot"]
|
||||
path = vim/vim/pack/plugins/start/vim-polyglot
|
||||
url = https://github.com/sheerun/vim-polyglot.git
|
8
alacritty/alacritty.toml
Normal file
8
alacritty/alacritty.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
# man alacritty for program details
|
||||
# man 5 alacritty for config details
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color" # Makes Alacritty work well with TMUX
|
||||
|
||||
[window]
|
||||
decorations = "none" # Removes title bar on Linux
|
21
git/config
21
git/config
|
@ -1,17 +1,16 @@
|
|||
#==========================#
|
||||
# Global Git Configuration #
|
||||
#==========================#
|
||||
#==============================================================================#
|
||||
#= Global Git Configuration =#
|
||||
#==============================================================================#
|
||||
[config]
|
||||
relativePaths=false # Show relative paths with status outputs
|
||||
relativePaths=false # Show relative paths with status outputs
|
||||
[init]
|
||||
defaultBranch=main # Default branch is 'main' not 'master'
|
||||
defaultBranch=main # Default branch is 'main' not 'master'
|
||||
[diff]
|
||||
algorithm=histogram # Better-sorted output of diffs
|
||||
algorithm=histogram # Better-sorted output of diffs
|
||||
[merge]
|
||||
conflictstyle=diff3 # Use the diff3 merge output
|
||||
[user] # Default credentials:
|
||||
name="Bill Niblock" # My name
|
||||
conflictstyle=diff3 # Use the diff3 merge output
|
||||
[user] # Default credentials:
|
||||
name="Bill Niblock" # My name
|
||||
email="bill@theinternetvagabond.com" # My email address
|
||||
[includeIf "gitdir:~/Code/nibtech/"] # Over-ride with NibTech credentials
|
||||
path="~/.config/git/nibtech.conf" # Path to NibTech config file
|
||||
# another thing!
|
||||
path="~/.config/git/nibtech.conf" # Path to NibTech config file
|
||||
|
|
10
makefile
10
makefile
|
@ -1,9 +1,13 @@
|
|||
#=====================================================#
|
||||
# Makefile for niblock dotfiles || $ make for options #
|
||||
#=====================================================#
|
||||
help: ## Default target; shows options
|
||||
echo "update-system: Update system from repository."
|
||||
echo " update-repo: Update repository from system."
|
||||
help: ## Default target shows options
|
||||
@echo "=== Make Targets ==="
|
||||
@echo " update-system: Update system from repository."
|
||||
@echo " update-repo: Update repository from system."
|
||||
@echo "=== Manually ==="
|
||||
@echo " Update System: cp -rut ~/.config <application>/"
|
||||
@echo " Update Repo: cp -rut . ~/.config/<application>/"
|
||||
|
||||
update-system: ## Update system from repository
|
||||
@cp -rut "$(HOME)"/.config "$(CURDIR)"/alacritty/
|
||||
|
|
3268
retroarch/retroarch.cfg
Normal file
3268
retroarch/retroarch.cfg
Normal file
File diff suppressed because it is too large
Load diff
|
@ -67,5 +67,3 @@ bind | split-window -h -c "#{pane_current_path}" # Horizontal split
|
|||
bind - split-window -v -c "#{pane_current_path}" # Vertical split
|
||||
# Reload config file
|
||||
bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
|
||||
# Captur selection, create a gist from it
|
||||
bind-key -tvi-copy u copy-pipe "ruby ~/Lab/gist_gem.rb -"
|
||||
|
|
Loading…
Reference in a new issue