Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface Props {
}

const {
githubUrl = "https://github.com/josstei/JoStVIM",
githubUrl = "https://github.com/LuxVim/LuxVim",
links = []
} = Astro.props;
---
Expand Down Expand Up @@ -110,4 +110,4 @@ const {
))
</div>
</div>
</nav>
</nav>
4 changes: 2 additions & 2 deletions src/layouts/main.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const {
title,
description = "LuxVim",
keywords = "vim, neovim, Luxvim, ide",
githubUrl = "https://github.com/josstei/JoStVIM",
githubUrl = "https://github.com/LuxVim/LuxVim",
showNavbar = true
} = Astro.props;

Expand Down Expand Up @@ -55,4 +55,4 @@ const navLinks = [
<script>
// Import Stimulus setup
import "../scripts/stimulus.js";
</script>
</script>
4 changes: 2 additions & 2 deletions src/pages/docs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import Main from '../layouts/main.astro';
title="Documentation | LuxVim - Lightweight Vim IDE for Developers"
description="A lightweight Vim IDE designed for developers, offering a seamless coding experience with powerful features and a user-friendly interface."
keywords="vim, neovim, Luxvim, ide, lightweight, developer tools, coding, programming, text editor, productivity"
githubUrl="https://github.com/josstei/jostvim"
githubUrl="https://github.com/LuxVim/LuxVim"
>
</Main>
</Main>
4 changes: 2 additions & 2 deletions src/pages/donate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ import Main from '../layouts/main.astro';
title="Donate | LuxVim - Lightweight Vim IDE for Developers"
description="A lightweight Vim IDE designed for developers, offering a seamless coding experience with powerful features and a user-friendly interface."
keywords="vim, neovim, Luxvim, ide, lightweight, developer tools, coding, programming, text editor, productivity"
githubUrl="https://github.com/josstei/jostvim"
githubUrl="https://github.com/LuxVim/LuxVim"
>
</Main>
</Main>
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import CodeBlock from "../components/CodeBlock.astro";
import logoImage from "../assets/luxvim-full-logo-with-lettering.png";

// TODO: Extract these into a config file
const installCode = `git clone https://github.com/josstei/JoStVIM.git
const installCode = `git clone https://github.com/LuxVim/LuxVim.git
cd LuxVIM`;

const runInstallCode = `./install.sh`;
Expand All @@ -18,7 +18,7 @@ Lux # For Neovim`;
title="LuxVim - Fast setup, faster coding"
description="A tailored Vim/Neovim configuration that boosts productivity for developers across languages and stacks. Rich plugins, sensible defaults, and custom productivity tools."
keywords="vim, neovim, Luxvim, ide, lightweight, developer tools, coding, programming, text editor, productivity, vim configuration"
githubUrl="https://github.com/josstei/jostvim"
githubUrl="https://github.com/LuxVim/LuxVim"
>
<!-- Hero Section -->
<section class="relative min-h-screen">
Expand Down Expand Up @@ -97,7 +97,7 @@ Lux # For Neovim`;
Get Started
</a>
<a
href="https://github.com/josstei/JoStVIM"
href="https://github.com/LuxVim/LuxVim"
target="_blank"
rel="noopener noreferrer"
class="inline-flex items-center px-8 py-4 text-lg font-semibold text-slate-800 dark:text-slate-200 bg-white/80 dark:bg-slate-800/50 backdrop-blur-sm border border-slate-300/50 dark:border-slate-700/50 rounded-xl hover:bg-white/90 dark:hover:bg-slate-700/50 transition-all duration-300 hover:scale-105 shadow-lg"
Expand Down Expand Up @@ -699,7 +699,7 @@ Lux # For Neovim`;
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a
href="https://github.com/josstei/JoStVIM"
href="https://github.com/LuxVim/LuxVim"
target="_blank"
rel="noopener noreferrer"
class="inline-flex items-center px-8 py-4 text-lg font-semibold text-white bg-gradient-to-r from-purple-600 to-pink-600 rounded-xl hover:from-purple-700 hover:to-pink-700 transition-all duration-300 hover:scale-105 shadow-lg hover:shadow-purple-500/25"
Expand Down