diff options
-rw-r--r-- | README.md | 26 | ||||
-rw-r--r-- | lua/core/dashboard.lua | 2 | ||||
-rwxr-xr-x | utils/installer/install.sh | 2 |
3 files changed, 15 insertions, 15 deletions
@@ -1,14 +1,14 @@  <div align="center"><p> - <a href="https://github.com/ChristianChiarulli/LunarVim/releases/latest"> - <img alt="Latest release" src="https://img.shields.io/github/v/release/ChristianChiarulli/LunarVim" /> + <a href="https://github.com/lunarvim/LunarVim/releases/latest"> + <img alt="Latest release" src="https://img.shields.io/github/v/release/lunarvim/LunarVim" /> </a> - <a href="https://github.com/ChristianChiarulli/LunarVim/pulse"> - <img alt="Last commit" src="https://img.shields.io/github/last-commit/ChristianChiarulli/LunarVim"/> + <a href="https://github.com/lunarvim/LunarVim/pulse"> + <img alt="Last commit" src="https://img.shields.io/github/last-commit/lunarvim/LunarVim"/> </a> - <a href="https://github.com/ChristianChiarulli/LunarVim/blob/main/LICENSE"> - <img src="https://img.shields.io/github/license/siduck76/NvChad?style=flat-square&logo=GNU&label=License" alt="License" + <a href="https://github.com/lunarvim/LunarVim/blob/main/LICENSE"> + <img src="https://img.shields.io/github/license/lunarvim/lunarvim?style=flat-square&logo=GNU&label=License" alt="License" /> <a href="https://patreon.com/chrisatmachine" title="Donate to this project using Patreon"> <img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" /> @@ -25,22 +25,22 @@ Make sure you have the newest version of Neovim (0.5). ``` bash -bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/lunarvim/master/utils/installer/install.sh) +bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh) ``` ### Installing The following command installs LunarVim. Change `LVBRANCH` to the branch you'd like to install. `master` for the stable branch and `rolling` for the latest changes. ``` bash -LVBRANCH=rolling bash <(curl -s https://raw.githubusercontent.com/ChristianChiarulli/lunarvim/rolling/utils/installer/install.sh) +LVBRANCH=rolling bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh) ``` ### BREAKING CHANGE on rolling and master branches -* The latest changes to LunarVim require you to [remove it completely](https://github.com/ChristianChiarulli/LunarVim/wiki/Uninstalling-LunarVim) before upgrading +* The latest changes to LunarVim require you to [remove it completely](https://github.com/lunarvim/LunarVim/wiki/Uninstalling-LunarVim) before upgrading * Going forward LunarVim will no longer reside in the nvim configuration folder. LunarVim has been moved to `~/.local/share/lunarvim`. * To launch Lunarvim use the new `lvim` command. `nvim` will only launch standard neovim. * Your personal configuration file (`config.lua`) can now be found in `~/.config/lvim`. You can initialize this folder as a git repository to track changes to your configuration files. * If you want to keep launching LunarVim with the `nvim` command, add an alias entry to your shell's config file: `alias nvim=lvim`. To temporarily revert to the default `nvim` prefix it with a backslash `\nvim`. -* Many options formerly available in `config.lua` have been renamed. For details [look here](https://github.com/ChristianChiarulli/LunarVim/wiki/Breaking-changes-in-rolling) +* Many options formerly available in `config.lua` have been renamed. For details [look here](https://github.com/lunarvim/LunarVim/wiki/Breaking-changes-in-rolling) ### Fixing installation problems If your installation is stuck on `Ok to remove? [y/N]`, it means there are some leftovers, \ @@ -51,7 +51,7 @@ you can run the script with `--overwrite` but be warned this will remove the fol - `~/.local/share/lunarvim` #Removed only on Rolling Branch - `~/.config/lvim` #Removed only on Rolling Branch ```bash -curl -s https://raw.githubusercontent.com/ChristianChiarulli/lunarvim/rolling/utils/installer/install.sh | LVBRANCH=rolling bash -s -- --overwrite +curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/rolling/utils/installer/install.sh | LVBRANCH=rolling bash -s -- --overwrite ``` then run nvim and wait for treesitter to finish the installation @@ -62,7 +62,7 @@ Just enter `:LspInstall` followed by `<TAB>` to see your options **NOTE** I recommend installing `lua` for autocomplete in `config.lua` -For the julia language server look [here](https://github.com/ChristianChiarulli/LunarVim/wiki/Enabling-a-language-server#julia-support) +For the julia language server look [here](https://github.com/lunarvim/LunarVim/wiki/Enabling-a-language-server#julia-support) ## Configuration file @@ -171,7 +171,7 @@ cd ~/.local/share/lunarvim/lvim && git pull :PackerSync ``` -To update Neovim use your package manager or [compile from source](https://github.com/ChristianChiarulli/LunarVim/wiki/Installation#get-the-latest-version-of-neovim) +To update Neovim use your package manager or [compile from source](https://github.com/lunarvim/LunarVim/wiki/Installation#get-the-latest-version-of-neovim) ## Project Goals diff --git a/lua/core/dashboard.lua b/lua/core/dashboard.lua index 2f14b9f1..87741523 100644 --- a/lua/core/dashboard.lua +++ b/lua/core/dashboard.lua @@ -47,7 +47,7 @@ M.config = function() }, }, - footer = { "chrisatmachine.com" }, + footer = { "lunarvim.org" }, } end diff --git a/utils/installer/install.sh b/utils/installer/install.sh index b3929409..25b67f12 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -125,7 +125,7 @@ cloneconfig() { cp -r "$(pwd)" ~/.local/share/lunarvim/lvim ;; *) - git clone --branch "$LVBRANCH" https://github.com/ChristianChiarulli/lunarvim.git ~/.local/share/lunarvim/lvim + git clone --branch "$LVBRANCH" https://github.com/lunarvim/lunarvim.git ~/.local/share/lunarvim/lvim ;; esac mkdir -p "$HOME/.config/lvim" |