mirror of
https://github.com/Ascyii/telekasten.nvim.git
synced 2026-01-01 06:14:23 -05:00
replaced hardcoded paths with ~ paths
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
Reference in New Issue
Block a user