This commit is contained in:
Tyler Starr 2023-04-30 20:40:44 -07:00
parent a737d52792
commit ceeb2ec438
10 changed files with 87 additions and 2 deletions

View File

@ -2,6 +2,7 @@
# i3 config file (v4)
# TODO: add scratchpads (terminal, password manager, discord, task)
# Test a edit!
#-------------------------------------------------------------------------------
#----- VARIABLES

View File

@ -2,11 +2,11 @@ local wk = require("which-key")
wk.register({
p = { function () require('telescope').extensions.project.project() end, "Project" },
b = { function () require('telescope.builtin').buffers() end, "Buffers" },
f = {
name = "+telescope",
f = { function () require('telescope.builtin').find_files() end, "Files" },
g = { function () require('telescope.builtin').live_grep() end, "Ripgrep" },
b = { function () require('telescope.builtin').buffers() end, "Buffers" },
h = { function () require('telescope.builtin').help_tags() end, "Help" }
},
}, { prefix = "<leader>" })

View File

@ -4,3 +4,4 @@ require("tstarr.telescope")
require("tstarr.vimwiki")
require("tstarr.which-key")
require("tstarr.iron")
--require("tstarr.neorg")

View File

@ -0,0 +1,13 @@
require('neorg').setup {
load = {
["core.defaults"] = {},
["core.concealer"] = {}, -- Adds pretty icons to your documents
["core.dirman"] = {
config = {
workspaces = {
personal = "~/documents/neorg/personal",
}
}
}
}
}

View File

@ -38,5 +38,7 @@ return require('packer').startup(function(use)
use ('vimwiki/vimwiki')
use ('folke/which-key.nvim')
use ('hkupty/iron.nvim')
use("mickael-menu/zk-nvim")
require("zk").setup()
end)

View File

@ -0,0 +1,16 @@
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run.
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_TMP_DIR="$HOME/tmp"
#XDG_DESKTOP_DIR="$HOME/Desktop"
#XDG_DOWNLOAD_DIR="$HOME/Downloads"
#XDG_TEMPLATES_DIR="$HOME/Templates"
#XDG_PUBLICSHARE_DIR="$HOME/Public"
#XDG_DOCUMENTS_DIR="$HOME/Documents"
#XDG_PICTURES_DIR="$HOME/Pictures"
#XDG_VIDEOS_DIR="$HOME/Videos"
#XDG_MUSIC_DIR="$HOME"

View File

@ -0,0 +1,49 @@
# /home/tstarr/.config/tmuxinator/splat.yml
name: generic dev
#root: ~/devel/work/genisys/splat-react
# Optional tmux socket
# socket_name: foo
# Note that the pre and post options have been deprecated and will be replaced by
# project hooks.
# Project hooks
# Runs on project start, always
# on_project_start: command
# Run on project start, the first time
# on_project_first_start: command
# Run on project start, after the first time
# on_project_restart: command
# Run on project exit ( detaching from tmux session )
# on_project_exit: command
# Run on project stop
# on_project_stop: command
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions.
# pre_window: rbenv shell 2.0.0-p247
# Pass command line options to tmux. Useful for specifying a different tmux.conf.
# tmux_options: -f ~/.tmux.mac.conf
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
# startup_window: editor
# Specifies (by index) which pane of the specified window will be selected on project startup. If not set, the first pane is used.
# startup_pane: 1
# Controls whether the tmux session should be attached to automatically. Defaults to true.
# attach: false
windows:
- editor: nvim
- term: clear

View File

@ -0,0 +1 @@
enabled=false

View File

@ -132,4 +132,6 @@ alias tre='trash-restore'
alias trm='trash-rm'
alias rofi='wayland-rofi'
# fedora
alias update-grub='sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg'
export GPG_TTY=$(tty)

@ -1 +1 @@
Subproject commit d1d9286c7244e6eda23ac3ec59c1ca8ccc2f1a00
Subproject commit 688d5d33ca6f0d0aa975d30b65900a0a357c7400