Compare commits

..

No commits in common. "8e8809a5a5e373a9a4ceea5f7ffa9e52a04f7a00" and "a62bc5c4b85af481693985140db42b094f963a22" have entirely different histories.

7 changed files with 33 additions and 3293 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
#Local Gitignore for Repo#
##########################
# Ignore undo files
*.un~

12
.gitmodules vendored Normal file
View 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

View file

@ -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

View file

@ -1,6 +1,6 @@
#==============================================================================#
#= Global Git Configuration =#
#==============================================================================#
#==========================#
# Global Git Configuration #
#==========================#
[config]
relativePaths=false # Show relative paths with status outputs
[init]
@ -14,3 +14,4 @@ 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!

View file

@ -1,13 +1,9 @@
#=====================================================#
# Makefile for niblock dotfiles || $ make for options #
#=====================================================#
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>/"
help: ## Default target; shows options
echo "update-system: Update system from repository."
echo " update-repo: Update repository from system."
update-system: ## Update system from repository
@cp -rut "$(HOME)"/.config "$(CURDIR)"/alacritty/

File diff suppressed because it is too large Load diff

View file

@ -67,3 +67,5 @@ 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 -"