aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2020-09-14 23:15:50 -0400
committerMitch Riedstra <mitch@riedstra.us>2020-09-14 23:15:50 -0400
commitc7f985196e24e337d7ea698341761bfda08c16f1 (patch)
treebf6f76cacd84d8dcc3a3f04db8f5887ec49e5d77
parent0cf2eaec00323af4c9af97528ca0391b1b62d7ce (diff)
downloaddotfiles-c7f985196e24e337d7ea698341761bfda08c16f1.tar.gz
dotfiles-c7f985196e24e337d7ea698341761bfda08c16f1.tar.xz
Switch to git.riedstra.dev and remove the .git from repos
-rw-r--r--mkshrc6
-rw-r--r--readme.md8
-rw-r--r--shell/conf6
-rw-r--r--vimrc2
4 files changed, 11 insertions, 11 deletions
diff --git a/mkshrc b/mkshrc
index 8674cfb..f39778e 100644
--- a/mkshrc
+++ b/mkshrc
@@ -508,9 +508,9 @@ esac
export EDITORS="ed vi vim "
export PATH="$HOME/bin:$PATH"
-UPDATE_URL="https://git.riedstra.us/mitch/dotfiles.git/plain/"
-VIM_GIT_URL="https://git.riedstra.us/mitch/vim-cfg.git"
-VIM_BASIC_URL="https://git.riedstra.us/mitch/dotfiles.git/plain/vimrc"
+UPDATE_URL="https://git.riedstra.dev/mitch/dotfiles/plain/"
+VIM_GIT_URL="https://git.riedstra.dev/mitch/vim-cfg"
+VIM_BASIC_URL="https://git.riedstra.dev/mitch/dotfiles/plain/vimrc"
PRELOAD="$HOME/${SHELL_CONFIG}.pre"
LOCAL="$HOME/${SHELL_CONFIG}.local"
diff --git a/readme.md b/readme.md
index 6945d7d..9456fba 100644
--- a/readme.md
+++ b/readme.md
@@ -10,7 +10,7 @@ Things of interest:
* basic configuration ( For if you don't want the custom status bar )
* [`keyCheck.sh`](keyCheck.sh) Automatically generate a 4096bit RSA SSH key or display the one you have
* Snapshot scripts. Snapshots your entire OS see below for more details.
- * A basic vim configuration ( also see [`vim-cfg.git`](https://git.riedstra.us/mitch/vim-cfg.git/about) )
+ * A basic vim configuration ( also see [`vim-cfg`](https://git.riedstra.dev/mitch/vim-cfg/about) )
* A handful of build scripts with my options for some open source projects such as Vim
## Snapshot Scripts
@@ -38,14 +38,14 @@ Some useful features are:
* Aliases
* `ll`, `lt`, `g` for `grep`, `j` for `jobs`, `p` for `pwd`, etc.
- * [Full list here](https://git.riedstra.us/mitch/dotfiles.git/tree/shell/aliases#n1)
+ * [Full list here](https://git.riedstra.dev/mitch/dotfiles/tree/shell/aliases#n1)
* `ls -F` by default
* Aliases for `apt`, `yum`, `pacman`, etc to use `sudo` by default.
* Utilize `doas` as `sudo` if installed, for instance on OpenBSD.
* Utils
* `set_go` can be called in `~/.mkshrc.local` or similar to add the
`GOROOT` and `GOPATH` `bin`'s to your `PATH`. [Example and
- code.](https://git.riedstra.us/mitch/dotfiles.git/tree/shell/utils#n1)
+ code.](https://git.riedstra.dev/mitch/dotfiles/tree/shell/utils#n1)
* Aggressively set the editor based off of a list in order of ascending preference. ( `set_editor` )
* `set_pager` same thing, except for your pager.
* `debugstarttls` Useful to debug starttls.
@@ -70,7 +70,7 @@ Some useful features are:
* Update<br />
This provides utilities that allow for easy updating of configuration files.
The most useful ones are as follows
- * `updatevimrc` Installs [my full vim configuration](https://git.riedstra.us/mitch/vim-cfg.git/about)
+ * `updatevimrc` Installs [my full vim configuration](https://git.riedstra.dev/mitch/vim-cfg/about)
* `updatevimrc_basic` Installs the `.vimrc` file which is a basic but useful vim configuration.
* `updatetmuxconf` Pulls in the tmux configuration from this repository.
* `updateshell` Pulls the latest version of `mkshrc` from this repository.
diff --git a/shell/conf b/shell/conf
index 7369c0c..f743597 100644
--- a/shell/conf
+++ b/shell/conf
@@ -9,9 +9,9 @@ esac
export EDITORS="ed vi vim "
export PATH="$HOME/bin:$PATH"
-UPDATE_URL="https://git.riedstra.us/mitch/dotfiles.git/plain/"
-VIM_GIT_URL="https://git.riedstra.us/mitch/vim-cfg.git"
-VIM_BASIC_URL="https://git.riedstra.us/mitch/dotfiles.git/plain/vimrc"
+UPDATE_URL="https://git.riedstra.dev/mitch/dotfiles/plain/"
+VIM_GIT_URL="https://git.riedstra.dev/mitch/vim-cfg"
+VIM_BASIC_URL="https://git.riedstra.dev/mitch/dotfiles/plain/vimrc"
PRELOAD="$HOME/${SHELL_CONFIG}.pre"
LOCAL="$HOME/${SHELL_CONFIG}.local"
diff --git a/vimrc b/vimrc
index b14e6c3..777b0a0 100644
--- a/vimrc
+++ b/vimrc
@@ -1,4 +1,4 @@
-" See the full vim configuration: https://git.riedstra.us/mitch/vim-cfg.git/about/
+" See the full vim configuration: https://git.riedstra.dev/mitch/vim-cfg/about/
" Basic vimrc for systems you don't want to copy the full one to
set encoding=utf-8 " The encoding displayed.
set fileencoding=utf-8 " The encoding written to file.