diff --git a/README.md b/README.md index c0ac274..be8e634 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Vim keybindings included. ## How to use You can download a prebuilt binary from the [releases](https://github.com/dhonus/arcanum/releases) page. Only linux tested. -You can build arcanum yourself by running `npm install` and `npm run tauri build` in the root of the project. +You can build arcanum yourself by completing [setting up](https://tauri.app/v1/guides/getting-started/prerequisites#setting-up-linux) and running `npm install` and `npm run tauri build` in the root of the project. ### Key bindings |key|action| diff --git a/src/lib/Home.svelte b/src/lib/Home.svelte index 511de83..259eaf4 100644 --- a/src/lib/Home.svelte +++ b/src/lib/Home.svelte @@ -8,7 +8,7 @@ let selected_element; let selected_column; let y_scroll; - let vim; + let vim = false; let browser; onMount(async () => { @@ -54,6 +54,7 @@ vim = !vim; localStorage.setItem("vim", String(vim)); setTimeout(() => (event.target.checked = vim), 0); + v.set(vim); } function browser_change(event) { browser = !browser;