From e284a08fbe5bd4d32d1289b1d86fa0fb3d5780fb Mon Sep 17 00:00:00 2001 From: Rene Schallner Date: Sat, 20 Nov 2021 21:41:36 +0100 Subject: [PATCH] replaced hardcoded paths with ~ paths --- lua/telekasten.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lua/telekasten.lua b/lua/telekasten.lua index 081d148..6d47d82 100644 --- a/lua/telekasten.lua +++ b/lua/telekasten.lua @@ -8,12 +8,16 @@ local builtin = require "telescope.builtin" local actions = require("telescope.actions") local action_state = require "telescope.actions.state" +-- DEFAULT CONFIG zkcfg = { - home = "/home/rs/zettelkasten", - dailies = "/home/rs/zettelkasten/daily", - extension = ".md", + home = "~/zettelkasten", + dailies = "~/zettelkasten/daily", + extension = ".md", daily_finder = "undaily_finder.sh", - my_bin = '/home/rs/bin', -- where to install the daily_finder + + -- where to install the daily_finder, + -- (must be a dir in your PATH) + my_bin = '~/bin', -- download tool for daily_finder installation: curl or wget downloader = 'curl',