mirror of
https://github.com/TheM1Stery/dotfiles.git
synced 2025-04-20 00:51:11 +00:00
chore: update plugins and misc changes
This commit is contained in:
parent
09f83ea29d
commit
6d0e0cbbc5
@ -20,6 +20,9 @@ exec-once = wl-paste --type image --watch cliphist store #Stores only image data
|
||||
|
||||
exec-once = python3 -m http.server -d /home/themystery/Bento
|
||||
|
||||
# auto-launch mail related stuff
|
||||
source = ~/.config/hypr/mail.conf
|
||||
|
||||
# initialize it here so that other conf files could use it
|
||||
$mainMod = SUPER
|
||||
|
||||
|
2
hypr/mail.conf
Normal file
2
hypr/mail.conf
Normal file
@ -0,0 +1,2 @@
|
||||
exec-once = thunderbird
|
||||
exec-once = protonmail-bridge --cli
|
@ -44,6 +44,7 @@
|
||||
"nvim-notify": { "branch": "master", "commit": "fbef5d32be8466dd76544a257d3f3dce20082a07" },
|
||||
"nvim-recorder": { "branch": "main", "commit": "a3c268f706ffec4428ea74bba6dfa3a0b20afa37" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "6511cd984ab4b21e28f83af488f38dc89c3b0586" },
|
||||
"nvim-treesitter-context": { "branch": "master", "commit": "78a81c7494e7d1a08dd1200b556933e513fd9f29" },
|
||||
"nvim-ts-autotag": { "branch": "main", "commit": "e239a560f338be31337e7abc3ee42515daf23f5e" },
|
||||
"nvim-ufo": { "branch": "main", "commit": "203c9f434feec57909ab4b1e028abeb3349b7847" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "26220156aafb198b2de6a4cf80c1b120a3768da0" },
|
||||
@ -62,6 +63,7 @@
|
||||
"vim-dadbod": { "branch": "master", "commit": "7888cb7164d69783d3dce4e0283decd26b82538b" },
|
||||
"vim-dadbod-completion": { "branch": "master", "commit": "880f7e9f2959e567c718d52550f9fae1aa07aa81" },
|
||||
"vim-dadbod-ui": { "branch": "master", "commit": "f29c85ab42861c6ef683289b0c6a51e0d436dcf6" },
|
||||
"vim-dotenv": { "branch": "master", "commit": "5c51cfcf8d87280d6414e03cd6b253eb70ecb800" },
|
||||
"vim-fugitive": { "branch": "master", "commit": "d4877e54cef67f5af4f950935b1ade19ed6b7370" },
|
||||
"vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "fb070344402cfc662299d9914f5546d840a22126" },
|
||||
|
@ -20,8 +20,9 @@ return {
|
||||
lua = { "stylua" },
|
||||
python = { "isort", "black" },
|
||||
javascript = { "prettierd", "prettier", stop_after_first = true },
|
||||
rust = { "rustfmt" },
|
||||
go = { "gofmt" }
|
||||
rust = { "rustfmt", "leptosfmt" },
|
||||
go = { "gofmt" },
|
||||
yaml = { "yamlfmt" }
|
||||
},
|
||||
-- -- Set up format-on-save
|
||||
format_on_save = { timeout_ms = 500, lsp_fallback = true },
|
||||
|
@ -1,5 +1,6 @@
|
||||
return {
|
||||
"github/copilot.vim",
|
||||
enabled = false,
|
||||
config = function()
|
||||
-- vim.g.copilot_no_tab_map = true
|
||||
vim.api.nvim_set_keymap("i", "<C-J>", 'copilot#Accept("<CR>")', { silent = true, expr = true })
|
||||
|
@ -77,5 +77,6 @@ return {
|
||||
color_square_width = 2,
|
||||
})
|
||||
end
|
||||
}
|
||||
},
|
||||
"https://github.com/tpope/vim-dotenv"
|
||||
}
|
||||
|
@ -1,8 +1,9 @@
|
||||
return {
|
||||
{
|
||||
'mrcjkb/rustaceanvim',
|
||||
version = '^4', -- Recommended
|
||||
version = '^5', -- Recommended
|
||||
ft = { 'rust' },
|
||||
lazy = false
|
||||
},
|
||||
{
|
||||
"ray-x/go.nvim",
|
||||
|
@ -37,8 +37,6 @@ return {
|
||||
},
|
||||
})
|
||||
|
||||
require("notify").setup({
|
||||
background_colour = "#000000",
|
||||
})
|
||||
require("notify").setup({})
|
||||
end
|
||||
}
|
||||
|
@ -32,6 +32,6 @@ return {
|
||||
require('rainbow-delimiters.setup').setup()
|
||||
end
|
||||
},
|
||||
-- "nvim-treesitter/nvim-treesitter-context"
|
||||
"nvim-treesitter/nvim-treesitter-context"
|
||||
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
return {
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
enabled = false,
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
|
Loading…
Reference in New Issue
Block a user