diff --git a/hypr/autostart.conf b/hypr/autostart.conf index 8348592..1ce38ad 100755 --- a/hypr/autostart.conf +++ b/hypr/autostart.conf @@ -31,7 +31,6 @@ source = ~/.config/hypr/plugins.conf source = ~/.config/hypr/wallpaper.conf # env -env = WLR_DRM_NO_ATOMIC, 1 env = DOTNET_CLI_TELEMETRY_OPTOUT, true env = QT_QPA_PLATFORMTHEME, qt6ct source = ~/.config/hypr/nvidia.conf diff --git a/hypr/hyprland.conf b/hypr/hyprland.conf index 2607263..f637fcf 100644 --- a/hypr/hyprland.conf +++ b/hypr/hyprland.conf @@ -261,6 +261,7 @@ misc { disable_hyprland_logo=true } -render { - explicit_sync = 0 -} +# render { + # explicit_sync = 1 + # explicit_sync_kms = 1 +# } diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index ee7fa99..2e17613 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -63,5 +63,6 @@ "vim-dadbod-ui": { "branch": "master", "commit": "0f51d8de368c8c6220973e8acd156d17da746f4c" }, "vim-fugitive": { "branch": "master", "commit": "0444df68cd1cdabc7453d6bd84099458327e5513" }, "vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" }, + "which-key.nvim": { "branch": "main", "commit": "6c1584eb76b55629702716995cca4ae2798a9cca" }, "zen-mode.nvim": { "branch": "main", "commit": "29b292bdc58b76a6c8f294c961a8bf92c5a6ebd6" } } diff --git a/nvim/lua/themystery/plugins/lsp.lua b/nvim/lua/themystery/plugins/lsp.lua index 5a57063..ff02f06 100644 --- a/nvim/lua/themystery/plugins/lsp.lua +++ b/nvim/lua/themystery/plugins/lsp.lua @@ -207,7 +207,7 @@ return { local gopls_opts = require("go.lsp").config() require("mason-lspconfig").setup({ - ensure_installed = { 'tsserver', 'svelte', 'lua_ls', 'csharp_ls' }, + ensure_installed = { 'tsserver', 'svelte', 'lua_ls', 'csharp_ls', 'rust_analyzer', 'gopls' }, handlers = { lsp.default_setup, lua_ls = function() diff --git a/nvim/lua/themystery/plugins/oil.lua b/nvim/lua/themystery/plugins/oil.lua index 9930c5b..38a313f 100644 --- a/nvim/lua/themystery/plugins/oil.lua +++ b/nvim/lua/themystery/plugins/oil.lua @@ -12,6 +12,9 @@ return { win_options = { signcolumn = "yes:2", }, + keymaps = { + ["tf", vim.cmd.Oil); diff --git a/nvim/lua/themystery/plugins/whichkey.lua b/nvim/lua/themystery/plugins/whichkey.lua new file mode 100644 index 0000000..9427793 --- /dev/null +++ b/nvim/lua/themystery/plugins/whichkey.lua @@ -0,0 +1,18 @@ +return { + "folke/which-key.nvim", + event = "VeryLazy", + opts = { + -- your configuration comes here + -- or leave it empty to use the default settings + -- refer to the configuration section below + }, + keys = { + { + "?", + function() + require("which-key").show({ global = false }) + end, + desc = "Buffer Local Keymaps (which-key)", + }, + }, +} diff --git a/zsh/.zshrc b/zsh/.zshrc index 8e2d8f9..738448a 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -9,6 +9,7 @@ fi # Created by newuser for 5.9 +# zsh settigns # my alliases are in ~/.profile so this just sources it [[ -e ~/.profile ]] && emulate sh -c 'source ~/.profile' @@ -22,6 +23,9 @@ export PATH="$PATH:$HOME/.dotnet/tools" source <(copilot completion zsh) +export HISTSIZE=10000 +export SAVEHIST=10000 + _dotnet_zsh_complete() @@ -83,3 +87,5 @@ export PATH="$BUN_INSTALL/bin:$PATH" export FP='fzf --preview="bat --style=numbers --color=always --line-range :500 {}"' + +