15 Commits

Author SHA1 Message Date
shaunrd0 c385d74cac Remove sensible. 2026-02-21 09:22:07 -05:00
shaunrd0 a4d2245b50 Enable some tmux plugins. 2026-02-21 09:20:20 -05:00
shaunrd0 f90cb319ba Add sections to configs. 2026-02-21 09:12:59 -05:00
shaunrd0 2efcfabb7b Add configurations to README. 2026-02-21 09:08:25 -05:00
shaunrd0 9dcdbf1275 Move comment. 2026-02-21 08:54:21 -05:00
shaunrd0 644fca32ed Update README. 2026-02-21 08:51:10 -05:00
shaunrd0 753dc47666 Update readme. 2026-02-21 08:49:45 -05:00
shaunrd0 f9163b626d Update setup script. 2026-02-21 08:42:15 -05:00
shaunrd0 1479f3ac37 Relocate .bash_secrets. 2026-02-21 08:38:16 -05:00
shaunrd0 99be1dfecd Update bash stuff. 2026-02-21 08:36:12 -05:00
shaunrd0 e7c4fe36bc Ignore blesh installations. 2026-02-21 08:22:47 -05:00
shaunrd0 dabfa780df Add bash.d. 2026-02-21 08:08:06 -05:00
shaunrd0 288dc28e07 Disable inputrc for now.
Keeping it around in case a non-blesh option is wanted in the future.
2026-02-21 06:51:54 -05:00
shaunrd0 c7f6c0b791 Add Qt assistant bash helper. 2026-02-21 06:51:34 -05:00
shaunrd0 f1930f166d Update clang_complete. 2026-02-21 06:46:42 -05:00
+23 -41
View File
@@ -14,7 +14,7 @@ screenshot below
### Install ### Install
Installation instructions Installation instructions -
```bash ```bash
git clone --recursive https://github.com/shaunrd0/dot git clone --recursive https://github.com/shaunrd0/dot
@@ -24,19 +24,6 @@ mv ~/.bashrc ~/.bashrc.backup
stow . -t ~ stow . -t ~
``` ```
To uninstall
```bash
stow -D . -t ~
mv ~/.bashrc.backup ~/.bashrc
```
If you have files other than `~/.bashrc` that conflict with these
configurations,
be sure to back them up so you can restore to your original state. If you do not
provide the `-t` flag to stow, the files will be symlinked within the parent
of your current directory.
### Docker ### Docker
You can run these dotfiles in a docker container - You can run these dotfiles in a docker container -
@@ -48,14 +35,30 @@ docker build -t dot .
docker run -it dot bash docker run -it dot bash
``` ```
Note that some features may not work properly in the container, like system
clipboard integration with vim or certain font icons used in themes. Still, the
base configurations work, and using the container as a clean environment is
useful for testing things such as installation instructions for a personal
project.
### Configurations ### Configurations
#### Vim
| Plugin | Description | Repository |
|---------------------|--------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| tmux plugin manager | Manages tmux plugins directly from GitHub. | [https://github.com/tmux-plugins/tpm](https://github.com/tmux-plugins/tpm) |
| tmux-resurrect | Saves and restores tmux sessions, panes, and layouts between restarts. | [https://github.com/tmux-plugins/tmux-resurrect](https://github.com/tmux-plugins/tmux-resurrect) |
| tmux-continuum | Automatically saves tmux sessions and can restore them on system reboot. | [https://github.com/tmux-plugins/tmux-continuum](https://github.com/tmux-plugins/tmux-continuum) |
| xclip | Integrates tmux copy mode with the system clipboard under X11. | [https://github.com/astrand/xclip](https://github.com/astrand/xclip) |
#### Tmux
| Plugin | Description | Repository |
|--------------------|--------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
| Colorizer | Highlights color codes in Vim buffers (useful for CSS/ web). | [https://github.com/chrisbra/Colorizer](https://github.com/chrisbra/Colorizer) |
| ALE | Asynchronous Lint Engine linting & fixing in Vim asynchronously. | [https://github.com/dense-analysis/ale](https://github.com/dense-analysis/ale) |
| clang_complete | Auto-completion support for C/C++ using libclang. | [https://github.com/xavierd/clang_complete](https://github.com/xavierd/clang_complete) |
| supertab | Expand completions using `<Tab>` in insert mode. | [https://github.com/ervandew/supertab](https://github.com/ervandew/supertab) |
| unicode.vim | Unicode helpers (insert and inspect Unicode characters). | [https://github.com/chrisbra/unicode.vim](https://github.com/chrisbra/unicode.vim) |
| vim-airline | Lean and fast status/tabline for Vim. | [https://github.com/vim-airline/vim-airline](https://github.com/vim-airline/vim-airline) |
| vim-airline-themes | Additional themes for vim-airline. | [https://github.com/vim-airline/vim-airline-themes](https://github.com/vim-airline/vim-airline-themes) |
| vim-signify | Shows VCS (git/hg) changes in the sign column. | [https://github.com/mhinz/vim-signify](https://github.com/mhinz/vim-signify) |
#### Utilities #### Utilities
| Tool | Description | Repository | | Tool | Description | Repository |
@@ -66,24 +69,3 @@ project.
| `.stow-local-ignore` | Stow configuration file that excludes specific files or patterns from being symlinked during deployment. | [https://www.gnu.org/software/stow/manual/stow.html](https://www.gnu.org/software/stow/manual/stow.html) | | `.stow-local-ignore` | Stow configuration file that excludes specific files or patterns from being symlinked during deployment. | [https://www.gnu.org/software/stow/manual/stow.html](https://www.gnu.org/software/stow/manual/stow.html) |
| `setup.sh` | Bootstrap script that automates symlink setup and environment initialization. | (Repository-local script) | | `setup.sh` | Bootstrap script that automates symlink setup and environment initialization. | (Repository-local script) |
#### Tmux
| Plugin | Description | Repository |
|---------------------|--------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------|
| tmux plugin manager | Manages tmux plugins directly from GitHub. | [https://github.com/tmux-plugins/tpm](https://github.com/tmux-plugins/tpm) |
| tmux-resurrect | Saves and restores tmux sessions, panes, and layouts between restarts. | [https://github.com/tmux-plugins/tmux-resurrect](https://github.com/tmux-plugins/tmux-resurrect) |
| tmux-continuum | Automatically saves tmux sessions and can restore them on system reboot. | [https://github.com/tmux-plugins/tmux-continuum](https://github.com/tmux-plugins/tmux-continuum) |
| xclip | Integrates tmux copy mode with the system clipboard under X11. | [https://github.com/astrand/xclip](https://github.com/astrand/xclip) |
#### Vim
| Plugin | Description | Repository |
|--------------------|--------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------|
| Colorizer | Highlights color codes in Vim buffers (useful for CSS/ web). | [https://github.com/chrisbra/Colorizer](https://github.com/chrisbra/Colorizer) |
| ALE | Asynchronous Lint Engine - linting & fixing in Vim asynchronously. | [https://github.com/dense-analysis/ale](https://github.com/dense-analysis/ale) |
| clang_complete | Auto-completion support for C/C++ using libclang. | [https://github.com/xavierd/clang_complete](https://github.com/xavierd/clang_complete) |
| supertab | Expand completions using `<Tab>` in insert mode. | [https://github.com/ervandew/supertab](https://github.com/ervandew/supertab) |
| unicode.vim | Unicode helpers (insert and inspect Unicode characters). | [https://github.com/chrisbra/unicode.vim](https://github.com/chrisbra/unicode.vim) |
| vim-airline | Lean and fast status/tabline for Vim. | [https://github.com/vim-airline/vim-airline](https://github.com/vim-airline/vim-airline) |
| vim-airline-themes | Additional themes for vim-airline. | [https://github.com/vim-airline/vim-airline-themes](https://github.com/vim-airline/vim-airline-themes) |
| vim-signify | Shows VCS (git/hg) changes in the sign column. | [https://github.com/mhinz/vim-signify](https://github.com/mhinz/vim-signify) |