diff --git a/pet/dot-config/pet/config.toml b/pet/dot-config/pet/config.toml new file mode 100644 index 0000000..1e9acbb --- /dev/null +++ b/pet/dot-config/pet/config.toml @@ -0,0 +1,37 @@ + +[GHEGist] + Public = false + access_token = "" + auto_sync = false + base_url = "" + file_name = "" + gist_id = "" + upload_url = "" + +[General] + Backend = "gist" + Cmd = [] + Color = false + Column = 40 + Editor = "sensible-editor" + Format = "[$description]: $command $tags" + SelectCmd = "fzf --ansi --layout=reverse --border --height=90% --pointer=* --cycle --prompt=Snippets:" + SnippetDirs = [] + SnippetFile = "/home/seb/.config/pet/snippet.toml" + SortBy = "" + +[Gist] + Public = false + access_token = "" + auto_sync = false + file_name = "pet-snippet.toml" + gist_id = "" + +[GitLab] + ID = "" + Url = "" + Visibility = "private" + access_token = "" + auto_sync = false + file_name = "pet-snippet.toml" + skip_ssl = false diff --git a/pet/dot-config/pet/snippet.toml b/pet/dot-config/pet/snippet.toml new file mode 100644 index 0000000..09556a6 --- /dev/null +++ b/pet/dot-config/pet/snippet.toml @@ -0,0 +1,6 @@ + +[[Snippets]] + Description = "Get root shell while preserving environment variables." + Output = "" + Tag = ["superuser", "bash", "sh", "envvar"] + command = "sudo -E --shell"