update conf
This commit is contained in:
@ -30,7 +30,13 @@ exec-once = quickshell
|
|||||||
exec-once = dunst
|
exec-once = dunst
|
||||||
exec-once = firefox
|
exec-once = firefox
|
||||||
exec-once = hyprpaper
|
exec-once = hyprpaper
|
||||||
exec-once = [workspace 9 silent] gtk-launch deezer-pwa
|
exec-once = gtk-launch deezer-pwa
|
||||||
|
# hl.window_rule({
|
||||||
|
# name = "deezer-workspace"
|
||||||
|
# match = { initialTitle = "Deezer" }
|
||||||
|
#
|
||||||
|
# workspace = "9 silent"
|
||||||
|
# })
|
||||||
# exec-once = ./scripts/close-monokai-popup.sh
|
# exec-once = ./scripts/close-monokai-popup.sh
|
||||||
|
|
||||||
# gnome keyring secret service
|
# gnome keyring secret service
|
||||||
|
|||||||
@ -62,18 +62,15 @@ return {
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- ts_ls: TypeScript/JavaScript/JSX/TSX
|
-- ts_ls: TypeScript/JavaScript/JSX/TSX
|
||||||
vim.lsp.config('ts_ls', {
|
-- vim.lsp.config('ts_ls', {
|
||||||
cmd = { 'typescript-language-server', '--stdio' },
|
-- cmd = { 'typescript-language-server', '--stdio' },
|
||||||
filetypes = {
|
-- filetypes = {
|
||||||
'javascript',
|
-- 'javascript',
|
||||||
'javascriptreact',
|
-- 'javascriptreact',
|
||||||
'typescript',
|
-- 'typescript',
|
||||||
'typescriptreact',
|
-- 'typescriptreact',
|
||||||
},
|
-- },
|
||||||
init_options = {
|
-- })
|
||||||
hostInfo = 'neovim',
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
-- eslint: linting for JS/TS/React projects
|
-- eslint: linting for JS/TS/React projects
|
||||||
vim.lsp.config('eslint', {
|
vim.lsp.config('eslint', {
|
||||||
|
|||||||
@ -17,7 +17,6 @@ return {
|
|||||||
telescope.setup({
|
telescope.setup({
|
||||||
defaults = {
|
defaults = {
|
||||||
path_display = { 'smart' },
|
path_display = { 'smart' },
|
||||||
file_ignore_patterns = ignore_patterns,
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -28,10 +27,13 @@ return {
|
|||||||
local keymap = vim.keymap
|
local keymap = vim.keymap
|
||||||
local builtin = require('telescope.builtin')
|
local builtin = require('telescope.builtin')
|
||||||
|
|
||||||
keymap.set('n', '<leader>ff', function() builtin.find_files({ hidden = true }) end, opts)
|
keymap.set('n', '<leader>ff', function()
|
||||||
|
builtin.find_files({ hidden = true, no_ignore = true, file_ignore_patterns = ignore_patterns })
|
||||||
|
end, opts)
|
||||||
keymap.set('n', '<leader>fh', builtin.oldfiles, opts)
|
keymap.set('n', '<leader>fh', builtin.oldfiles, opts)
|
||||||
keymap.set('n', '<leader>fs', function ()
|
keymap.set('n', '<leader>fs', function ()
|
||||||
builtin.live_grep({
|
builtin.live_grep({
|
||||||
|
additional_args = { "--no-ignore" },
|
||||||
file_ignore_patterns = vim.list_extend(vim.deepcopy(ignore_patterns), { "supabase/migrations/" })
|
file_ignore_patterns = vim.list_extend(vim.deepcopy(ignore_patterns), { "supabase/migrations/" })
|
||||||
})
|
})
|
||||||
end, opts)
|
end, opts)
|
||||||
|
|||||||
@ -42,13 +42,11 @@ export NVM_DIR="$HOME/.nvm"
|
|||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
if [[ -n "$MACHINE_TYPE" && -f "$HOME/dotfiles/zsh/hosts/$MACHINE_TYPE.zsh" ]]; then
|
MACHINE_TYPE=$(uname -n)
|
||||||
source "$HOME/dotfiles/zsh/hosts/$MACHINE_TYPE.zsh"
|
if [[ -n "$MACHINE_TYPE" && -f "$HOME/dotfiles/roles/zsh/files/hosts/$MACHINE_TYPE.zsh" ]]; then
|
||||||
|
source "$HOME/dotfiles/roles/zsh/files/hosts/$MACHINE_TYPE.zsh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
alias drun='docker run -it --network=host --device=/dev/kfd --device=/dev/dri --group-add=video --ipc=host --cap-add=SYS_PTRACE --security-opt seccomp=unconfined'
|
|
||||||
|
|
||||||
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh"
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/gcr/ssh"
|
||||||
|
|
||||||
bindkey '^H' backward-kill-word
|
bindkey '^H' backward-kill-word
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
# eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||||
|
|
||||||
|
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
|
||||||
|
|
||||||
export ANDROID_HOME=/home/johannes/Android/Sdk
|
export ANDROID_HOME=/home/johannes/Android/Sdk
|
||||||
|
|
||||||
Reference in New Issue
Block a user