From 5e5fcdfa144d7c665a72f86bb11c684639c35769 Mon Sep 17 00:00:00 2001 From: Anthony Rose Date: Tue, 17 Dec 2024 13:12:37 +0000 Subject: [PATCH] Support neovim flatpak --- roles/home-cli/files/profile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/home-cli/files/profile b/roles/home-cli/files/profile index d23aecd..787c672 100644 --- a/roles/home-cli/files/profile +++ b/roles/home-cli/files/profile @@ -212,6 +212,9 @@ if command -v nvim > /dev/null then EDITOR="nvim -f" alias vi=nvim +elif command -v io.neovim.nvim > /dev/null + EDITOR="io.neovim.nvim -f" + alias vi=io.neovim.nvim elif command -v vim > /dev/null then EDITOR="vim -f"