Compare commits
No commits in common. "8e8809a5a5e373a9a4ceea5f7ffa9e52a04f7a00" and "a62bc5c4b85af481693985140db42b094f963a22" have entirely different histories.
8e8809a5a5
...
a62bc5c4b8
7 changed files with 33 additions and 3293 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#Local Gitignore for Repo#
|
||||||
|
##########################
|
||||||
|
|
||||||
|
# Ignore undo files
|
||||||
|
*.un~
|
12
.gitmodules
vendored
Normal file
12
.gitmodules
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[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
|
|
@ -1,8 +0,0 @@
|
||||||
# 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
|
|
|
@ -1,6 +1,6 @@
|
||||||
#==============================================================================#
|
#==========================#
|
||||||
#= Global Git Configuration =#
|
# Global Git Configuration #
|
||||||
#==============================================================================#
|
#==========================#
|
||||||
[config]
|
[config]
|
||||||
relativePaths=false # Show relative paths with status outputs
|
relativePaths=false # Show relative paths with status outputs
|
||||||
[init]
|
[init]
|
||||||
|
@ -14,3 +14,4 @@ name="Bill Niblock" # My name
|
||||||
email="bill@theinternetvagabond.com" # My email address
|
email="bill@theinternetvagabond.com" # My email address
|
||||||
[includeIf "gitdir:~/Code/nibtech/"] # Over-ride with NibTech credentials
|
[includeIf "gitdir:~/Code/nibtech/"] # Over-ride with NibTech credentials
|
||||||
path="~/.config/git/nibtech.conf" # Path to NibTech config file
|
path="~/.config/git/nibtech.conf" # Path to NibTech config file
|
||||||
|
# another thing!
|
||||||
|
|
10
makefile
10
makefile
|
@ -1,13 +1,9 @@
|
||||||
#=====================================================#
|
#=====================================================#
|
||||||
# Makefile for niblock dotfiles || $ make for options #
|
# Makefile for niblock dotfiles || $ make for options #
|
||||||
#=====================================================#
|
#=====================================================#
|
||||||
help: ## Default target shows options
|
help: ## Default target; shows options
|
||||||
@echo "=== Make Targets ==="
|
echo "update-system: Update system from repository."
|
||||||
@echo " update-system: Update system from repository."
|
echo " update-repo: Update repository from system."
|
||||||
@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
|
update-system: ## Update system from repository
|
||||||
@cp -rut "$(HOME)"/.config "$(CURDIR)"/alacritty/
|
@cp -rut "$(HOME)"/.config "$(CURDIR)"/alacritty/
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -67,3 +67,5 @@ bind | split-window -h -c "#{pane_current_path}" # Horizontal split
|
||||||
bind - split-window -v -c "#{pane_current_path}" # Vertical split
|
bind - split-window -v -c "#{pane_current_path}" # Vertical split
|
||||||
# Reload config file
|
# Reload config file
|
||||||
bind r source-file ~/.tmux.conf \; display "Config Reloaded!"
|
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