Compare commits

...

6 commits

Author SHA1 Message Date
8e8809a5a5 Update makefile 2024-10-23 11:56:17 -04:00
e77849d752 Add retroarch 2024-10-23 11:56:10 -04:00
fc4ed371f0 Add tmux configuration 2024-10-23 11:55:10 -04:00
2acbe2aa5e Touch up git a bit 2024-10-13 16:24:12 -04:00
532e627b4e Add alacritty config 2024-10-13 16:20:44 -04:00
65c90853c0 Remove repo git-ignore and submodules 2024-10-13 16:20:33 -04:00
7 changed files with 3293 additions and 33 deletions

5
.gitignore vendored
View file

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

12
.gitmodules vendored
View file

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

View file

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

View file

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

File diff suppressed because it is too large Load diff

View file

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