replaced hardcoded paths with ~ paths

This commit is contained in:
Rene Schallner
2021-11-20 21:41:36 +01:00
parent 300ba81b8a
commit e284a08fbe

View File

@@ -8,12 +8,16 @@ local builtin = require "telescope.builtin"
local actions = require("telescope.actions") local actions = require("telescope.actions")
local action_state = require "telescope.actions.state" local action_state = require "telescope.actions.state"
-- DEFAULT CONFIG
zkcfg = { zkcfg = {
home = "/home/rs/zettelkasten", home = "~/zettelkasten",
dailies = "/home/rs/zettelkasten/daily", dailies = "~/zettelkasten/daily",
extension = ".md", extension = ".md",
daily_finder = "undaily_finder.sh", 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 -- download tool for daily_finder installation: curl or wget
downloader = 'curl', downloader = 'curl',