Files
dot/README.md

34 lines
1.1 KiB
Markdown
Raw Normal View History

2026-02-14 01:58:02 +00:00
## Dotfiles
Dotfiles configurations for headless Kubuntu linux environments. Be sure to clone recursively if you want to grab updated plugins / submodules included. For example, using Pathogen with Vim to manage plugins requires that the plugin to be installed are cloned to the `~/.vim/bundle/` directory. Cloning recursively allows git to clone these same nested repositories/submodules within this directory so Pathogen can handle running the Vim plugins.
2019-09-13 19:28:05 -04:00
2020-11-23 13:57:39 -05:00
Once installed, editing source code in vim supports features displayed in the screenshot below
![Vim screenshot](VimScreenshot.png)
2026-02-14 01:58:02 +00:00
### Install
2026-02-14 01:58:02 +00:00
If you don't install `vim-gtk3`, vim will not have access to your system clipboard, and your copy and paste buffers will not stay in sync.
2019-09-13 19:28:05 -04:00
2026-02-14 01:58:02 +00:00
Installation instructions -
```bash
2026-02-14 01:58:02 +00:00
git clone --recursive https://github.com/shaunrd0/dot
cd dot/
./setup.sh
mv ~/.bashrc ~/.bashrc.backup
stow . -t ~
2020-11-23 13:57:39 -05:00
```
2022-08-28 17:44:40 -04:00
### Docker
You can run these dotfiles in a docker container -
```bash
git clone git@github.com:shaunrd0/dot.git
cd dot
docker build -t dot .
docker run -it dot bash
```