mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
updates
This commit is contained in:
parent
a737d52792
commit
ceeb2ec438
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
# i3 config file (v4)
|
# i3 config file (v4)
|
||||||
# TODO: add scratchpads (terminal, password manager, discord, task)
|
# TODO: add scratchpads (terminal, password manager, discord, task)
|
||||||
|
# Test a edit!
|
||||||
|
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
#----- VARIABLES
|
#----- VARIABLES
|
||||||
|
@ -2,11 +2,11 @@ local wk = require("which-key")
|
|||||||
|
|
||||||
wk.register({
|
wk.register({
|
||||||
p = { function () require('telescope').extensions.project.project() end, "Project" },
|
p = { function () require('telescope').extensions.project.project() end, "Project" },
|
||||||
|
b = { function () require('telescope.builtin').buffers() end, "Buffers" },
|
||||||
f = {
|
f = {
|
||||||
name = "+telescope",
|
name = "+telescope",
|
||||||
f = { function () require('telescope.builtin').find_files() end, "Files" },
|
f = { function () require('telescope.builtin').find_files() end, "Files" },
|
||||||
g = { function () require('telescope.builtin').live_grep() end, "Ripgrep" },
|
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" }
|
h = { function () require('telescope.builtin').help_tags() end, "Help" }
|
||||||
},
|
},
|
||||||
}, { prefix = "<leader>" })
|
}, { prefix = "<leader>" })
|
||||||
|
@ -4,3 +4,4 @@ require("tstarr.telescope")
|
|||||||
require("tstarr.vimwiki")
|
require("tstarr.vimwiki")
|
||||||
require("tstarr.which-key")
|
require("tstarr.which-key")
|
||||||
require("tstarr.iron")
|
require("tstarr.iron")
|
||||||
|
--require("tstarr.neorg")
|
||||||
|
13
home/dot_config/nvim/lua/tstarr/neorg.lua
Normal file
13
home/dot_config/nvim/lua/tstarr/neorg.lua
Normal 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",
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -38,5 +38,7 @@ return require('packer').startup(function(use)
|
|||||||
use ('vimwiki/vimwiki')
|
use ('vimwiki/vimwiki')
|
||||||
use ('folke/which-key.nvim')
|
use ('folke/which-key.nvim')
|
||||||
use ('hkupty/iron.nvim')
|
use ('hkupty/iron.nvim')
|
||||||
|
use("mickael-menu/zk-nvim")
|
||||||
|
require("zk").setup()
|
||||||
|
|
||||||
end)
|
end)
|
||||||
|
16
home/dot_config/private_user-dirs.dirs
Normal file
16
home/dot_config/private_user-dirs.dirs
Normal 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"
|
49
home/dot_config/tmuxinator/dev.yml
Normal file
49
home/dot_config/tmuxinator/dev.yml
Normal 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
|
1
home/dot_config/user-dirs.conf
Normal file
1
home/dot_config/user-dirs.conf
Normal file
@ -0,0 +1 @@
|
|||||||
|
enabled=false
|
@ -132,4 +132,6 @@ alias tre='trash-restore'
|
|||||||
alias trm='trash-rm'
|
alias trm='trash-rm'
|
||||||
alias rofi='wayland-rofi'
|
alias rofi='wayland-rofi'
|
||||||
|
|
||||||
|
# fedora
|
||||||
|
alias update-grub='sudo grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg'
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit d1d9286c7244e6eda23ac3ec59c1ca8ccc2f1a00
|
Subproject commit 688d5d33ca6f0d0aa975d30b65900a0a357c7400
|
Loading…
x
Reference in New Issue
Block a user