stuff and things
This commit is contained in:
2
env/.config/.profile
vendored
2
env/.config/.profile
vendored
@@ -30,7 +30,7 @@ export EDITOR="nvim"
|
||||
# export BROWSER="/home/iceyrazor/.local/bin/zen-x86_64.AppImage"
|
||||
export BROWSER="zen.desktop"
|
||||
export PREFIX=/usr
|
||||
export PATH="$PATH:$HOME/.cargo/bin:$HOME/stuff/scripts/system:$HOME/stuff/scripts/system/backup:$HOME/stuff/scripts/system/wlx:$HOME/stuff/scripts/system/youtube-playlist-cli:$HOME/.local/bin/blender-4.1.1-linux-x64:$HOME/stuff/manual-programs/app-images:$HOME/stuff/scripts/system/theme-setter"
|
||||
export PATH="$PATH:$HOME/.cargo/bin:$HOME/stuff/scripts/system:$HOME/.local/bin/system:$HOME/.local/bin/system/backup:$HOME/stuff/scripts/system/backup:$HOME/stuff/scripts/system/wlx:$HOME/stuff/scripts/system/youtube-playlist-cli:$HOME/.local/bin/blender-4.1.1-linux-x64:$HOME/stuff/manual-programs/app-images:$HOME/stuff/scripts/system/theme-setter"
|
||||
export MANPAGER='nvim +Man!'
|
||||
# export DWM_NOTIF_FILE="/home/iceyrazor/stuff/scripts/c/SDL/notif/notif.txt"
|
||||
|
||||
|
||||
2
env/.config/awesome/rc.lua
vendored
2
env/.config/awesome/rc.lua
vendored
@@ -551,4 +551,4 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n
|
||||
|
||||
|
||||
-- autostart applets
|
||||
awful.spawn.with_shell("~/.config/dwm/autostart.sh")
|
||||
awful.spawn.with_shell("~/.local/bin/start_scripts/autostart.sh")
|
||||
|
||||
1
env/.config/hypr/hyprland.conf
vendored
1
env/.config/hypr/hyprland.conf
vendored
@@ -23,7 +23,6 @@ windowrule = move 0 0,title:^(flameshot)
|
||||
windowrule = suppressevent fullscreen,title:^(flameshot)
|
||||
|
||||
exec-once = $HOME/.local/bin/system/start_scripts/autostart.sh
|
||||
exec-once = waybar
|
||||
exec-once = /usr/lib/xdg-desktop-portal &
|
||||
exec-once = dbus-update-activation-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
# exec-once = ibus-daemon -rxRd
|
||||
|
||||
13
env/.config/nvim/after/plugin/telescope.lua
vendored
13
env/.config/nvim/after/plugin/telescope.lua
vendored
@@ -1,9 +1,20 @@
|
||||
local telescope = require('telescope')
|
||||
local builtin = require('telescope.builtin')
|
||||
if string.find(vim.loop.cwd(),"iceys%-linux%-stuffs") then
|
||||
telescope.setup{
|
||||
pickers = {
|
||||
find_files = {
|
||||
hidden=true
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
vim.keymap.set('n', '<leader>pf', builtin.find_files, {})
|
||||
vim.keymap.set('n', '<leader>pg', builtin.live_grep, {})
|
||||
vim.keymap.set('n', '<leader>pb', builtin.buffers, {})
|
||||
vim.keymap.set('n', '<leader>ph', builtin.help_tags, {})
|
||||
vim.keymap.set('n', '<leader>pw', builtin.pickers, {})
|
||||
vim.keymap.set('n', '<leader>ps', function()
|
||||
builtin.grep_string({ search = vim.fn.input("Grep > ") });
|
||||
builtin.grep_string({ search = vim.fn.input("Grep > ") });
|
||||
end)
|
||||
--vim.keymap.set('n', '<C-p>', builtin.git_files, {})
|
||||
|
||||
2
env/.config/nvim/lua/yourmom/packer.lua
vendored
2
env/.config/nvim/lua/yourmom/packer.lua
vendored
@@ -22,7 +22,7 @@ return require('packer').startup(function(use)
|
||||
use '3rd/image.nvim'
|
||||
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.8', -- 0.1.5
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { {'nvim-lua/plenary.nvim'} }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user