mirror of
https://github.com/TheM1Stery/dotfiles.git
synced 2025-04-20 00:51:11 +00:00
chore: add stuff
This commit is contained in:
parent
70ab1bd1db
commit
596b7c31ed
@ -31,7 +31,6 @@ source = ~/.config/hypr/plugins.conf
|
|||||||
source = ~/.config/hypr/wallpaper.conf
|
source = ~/.config/hypr/wallpaper.conf
|
||||||
|
|
||||||
# env
|
# env
|
||||||
env = WLR_DRM_NO_ATOMIC, 1
|
|
||||||
env = DOTNET_CLI_TELEMETRY_OPTOUT, true
|
env = DOTNET_CLI_TELEMETRY_OPTOUT, true
|
||||||
env = QT_QPA_PLATFORMTHEME, qt6ct
|
env = QT_QPA_PLATFORMTHEME, qt6ct
|
||||||
source = ~/.config/hypr/nvidia.conf
|
source = ~/.config/hypr/nvidia.conf
|
||||||
|
@ -261,6 +261,7 @@ misc {
|
|||||||
disable_hyprland_logo=true
|
disable_hyprland_logo=true
|
||||||
}
|
}
|
||||||
|
|
||||||
render {
|
# render {
|
||||||
explicit_sync = 0
|
# explicit_sync = 1
|
||||||
}
|
# explicit_sync_kms = 1
|
||||||
|
# }
|
||||||
|
@ -63,5 +63,6 @@
|
|||||||
"vim-dadbod-ui": { "branch": "master", "commit": "0f51d8de368c8c6220973e8acd156d17da746f4c" },
|
"vim-dadbod-ui": { "branch": "master", "commit": "0f51d8de368c8c6220973e8acd156d17da746f4c" },
|
||||||
"vim-fugitive": { "branch": "master", "commit": "0444df68cd1cdabc7453d6bd84099458327e5513" },
|
"vim-fugitive": { "branch": "master", "commit": "0444df68cd1cdabc7453d6bd84099458327e5513" },
|
||||||
"vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" },
|
"vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" },
|
||||||
|
"which-key.nvim": { "branch": "main", "commit": "6c1584eb76b55629702716995cca4ae2798a9cca" },
|
||||||
"zen-mode.nvim": { "branch": "main", "commit": "29b292bdc58b76a6c8f294c961a8bf92c5a6ebd6" }
|
"zen-mode.nvim": { "branch": "main", "commit": "29b292bdc58b76a6c8f294c961a8bf92c5a6ebd6" }
|
||||||
}
|
}
|
||||||
|
@ -207,7 +207,7 @@ return {
|
|||||||
|
|
||||||
local gopls_opts = require("go.lsp").config()
|
local gopls_opts = require("go.lsp").config()
|
||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = { 'tsserver', 'svelte', 'lua_ls', 'csharp_ls' },
|
ensure_installed = { 'tsserver', 'svelte', 'lua_ls', 'csharp_ls', 'rust_analyzer', 'gopls' },
|
||||||
handlers = {
|
handlers = {
|
||||||
lsp.default_setup,
|
lsp.default_setup,
|
||||||
lua_ls = function()
|
lua_ls = function()
|
||||||
|
@ -12,6 +12,9 @@ return {
|
|||||||
win_options = {
|
win_options = {
|
||||||
signcolumn = "yes:2",
|
signcolumn = "yes:2",
|
||||||
},
|
},
|
||||||
|
keymaps = {
|
||||||
|
["<C-p"] = false
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.keymap.set("n", "<leader>tf", vim.cmd.Oil);
|
vim.keymap.set("n", "<leader>tf", vim.cmd.Oil);
|
||||||
|
18
nvim/lua/themystery/plugins/whichkey.lua
Normal file
18
nvim/lua/themystery/plugins/whichkey.lua
Normal file
@ -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 = {
|
||||||
|
{
|
||||||
|
"<leader>?",
|
||||||
|
function()
|
||||||
|
require("which-key").show({ global = false })
|
||||||
|
end,
|
||||||
|
desc = "Buffer Local Keymaps (which-key)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
@ -9,6 +9,7 @@ fi
|
|||||||
# Created by newuser for 5.9
|
# Created by newuser for 5.9
|
||||||
|
|
||||||
|
|
||||||
|
# zsh settigns
|
||||||
|
|
||||||
# my alliases are in ~/.profile so this just sources it
|
# my alliases are in ~/.profile so this just sources it
|
||||||
[[ -e ~/.profile ]] && emulate sh -c 'source ~/.profile'
|
[[ -e ~/.profile ]] && emulate sh -c 'source ~/.profile'
|
||||||
@ -22,6 +23,9 @@ export PATH="$PATH:$HOME/.dotnet/tools"
|
|||||||
|
|
||||||
source <(copilot completion zsh)
|
source <(copilot completion zsh)
|
||||||
|
|
||||||
|
export HISTSIZE=10000
|
||||||
|
export SAVEHIST=10000
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
_dotnet_zsh_complete()
|
_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 {}"'
|
export FP='fzf --preview="bat --style=numbers --color=always --line-range :500 {}"'
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user