From 67fb220931dcad0724876865a4983041e47cdf1c Mon Sep 17 00:00:00 2001 From: Rene Schallner Date: Sun, 21 Nov 2021 02:11:10 +0100 Subject: [PATCH] move to new repo --- README.md | 12 ++++++------ lua/telekasten.lua | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3b29e8e..d5009b6 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,16 @@ Find notes by name, daily notes by date, search within all notes, place and foll ## Install and setup -**MS Windows note:** At the moment, telekasten is unlikely to be able to run on Windows, because it relies on a bash script. Just sayin. Since telekasten is a project that scratches my own itch, I am not sure if I will add Windows support any time soon. Should anyone read this: Pull requests are welcome 😄! Replacing the daily finder by a proper lua version should do the trick. +**MS Windows note:** At the moment, telekasten.nvim is unlikely to be able to run on Windows, because it relies on a bash script. Just sayin. Since telekasten.nvim is a project that scratches my own itch, I am not sure if I will add Windows support any time soon. Should anyone read this: Pull requests are welcome 😄! Replacing the daily finder by a proper lua version should do the trick. ### 1. Install the plugin Install with your plugin manager of choice. Mine is [Vundle](https://github.com/VundleVim/Vundle.vim). ```vimscript -Plugin 'renerocksai/telekasten' +Plugin 'renerocksai/telekasten.nvim' ``` -### 2. Configure telekasten +### 2. Configure telekaste.nvimn Somewhere in your vim config, put a snippet like this: ```vimscript @@ -38,12 +38,12 @@ END ``` ### 3. Install the daily finder -Before using telekasten, a shell script needs to be installed. It finds and sorts notes the way we want. As long as I don't have a lua version for this functionality (this is literally the first time I use lua), we will have to stick with `daily_finder.sh`. +Before using telekasten.nvim, a shell script needs to be installed. It finds and sorts notes the way we want. As long as I don't have a lua version for this functionality (this is literally the first time I use lua), we will have to stick with `daily_finder.sh`. -Luckily, the plugin can install the daily finder for you, directly from [GitHub](https://raw.githubusercontent.com/renerocksai/telekasten/main/ext_commands/daily_finder.sh): +Luckily, the plugin can install the daily finder for you, directly from [GitHub](https://raw.githubusercontent.com/renerocksai/telekasten.nvim/main/ext_commands/daily_finder.sh): ``` -:lua require('telekasten').install_daily_finder() +:lua require('telekasten.nvim').install_daily_finder() ``` This will download the daily finder into the `bin/` folder of your home directory - or the directory you specified as `my_bin` in the step above. diff --git a/lua/telekasten.lua b/lua/telekasten.lua index ffed5cd..d673637 100644 --- a/lua/telekasten.lua +++ b/lua/telekasten.lua @@ -219,5 +219,4 @@ local M = { install_daily_finder = install_daily_finder, goto_today = goto_today, } -print("telekasten reloaded") return M