chore: update plugins and misc changes

This commit is contained in:
Seymur Bagirov 2024-10-16 16:18:19 +04:00
parent 09f83ea29d
commit 6d0e0cbbc5
10 changed files with 20 additions and 10 deletions

View File

@ -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 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 # initialize it here so that other conf files could use it
$mainMod = SUPER $mainMod = SUPER

2
hypr/mail.conf Normal file
View File

@ -0,0 +1,2 @@
exec-once = thunderbird
exec-once = protonmail-bridge --cli

View File

@ -44,6 +44,7 @@
"nvim-notify": { "branch": "master", "commit": "fbef5d32be8466dd76544a257d3f3dce20082a07" }, "nvim-notify": { "branch": "master", "commit": "fbef5d32be8466dd76544a257d3f3dce20082a07" },
"nvim-recorder": { "branch": "main", "commit": "a3c268f706ffec4428ea74bba6dfa3a0b20afa37" }, "nvim-recorder": { "branch": "main", "commit": "a3c268f706ffec4428ea74bba6dfa3a0b20afa37" },
"nvim-treesitter": { "branch": "master", "commit": "6511cd984ab4b21e28f83af488f38dc89c3b0586" }, "nvim-treesitter": { "branch": "master", "commit": "6511cd984ab4b21e28f83af488f38dc89c3b0586" },
"nvim-treesitter-context": { "branch": "master", "commit": "78a81c7494e7d1a08dd1200b556933e513fd9f29" },
"nvim-ts-autotag": { "branch": "main", "commit": "e239a560f338be31337e7abc3ee42515daf23f5e" }, "nvim-ts-autotag": { "branch": "main", "commit": "e239a560f338be31337e7abc3ee42515daf23f5e" },
"nvim-ufo": { "branch": "main", "commit": "203c9f434feec57909ab4b1e028abeb3349b7847" }, "nvim-ufo": { "branch": "main", "commit": "203c9f434feec57909ab4b1e028abeb3349b7847" },
"nvim-web-devicons": { "branch": "master", "commit": "26220156aafb198b2de6a4cf80c1b120a3768da0" }, "nvim-web-devicons": { "branch": "master", "commit": "26220156aafb198b2de6a4cf80c1b120a3768da0" },
@ -62,6 +63,7 @@
"vim-dadbod": { "branch": "master", "commit": "7888cb7164d69783d3dce4e0283decd26b82538b" }, "vim-dadbod": { "branch": "master", "commit": "7888cb7164d69783d3dce4e0283decd26b82538b" },
"vim-dadbod-completion": { "branch": "master", "commit": "880f7e9f2959e567c718d52550f9fae1aa07aa81" }, "vim-dadbod-completion": { "branch": "master", "commit": "880f7e9f2959e567c718d52550f9fae1aa07aa81" },
"vim-dadbod-ui": { "branch": "master", "commit": "f29c85ab42861c6ef683289b0c6a51e0d436dcf6" }, "vim-dadbod-ui": { "branch": "master", "commit": "f29c85ab42861c6ef683289b0c6a51e0d436dcf6" },
"vim-dotenv": { "branch": "master", "commit": "5c51cfcf8d87280d6414e03cd6b253eb70ecb800" },
"vim-fugitive": { "branch": "master", "commit": "d4877e54cef67f5af4f950935b1ade19ed6b7370" }, "vim-fugitive": { "branch": "master", "commit": "d4877e54cef67f5af4f950935b1ade19ed6b7370" },
"vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" }, "vim-repeat": { "branch": "master", "commit": "65846025c15494983dafe5e3b46c8f88ab2e9635" },
"which-key.nvim": { "branch": "main", "commit": "fb070344402cfc662299d9914f5546d840a22126" }, "which-key.nvim": { "branch": "main", "commit": "fb070344402cfc662299d9914f5546d840a22126" },

View File

@ -20,8 +20,9 @@ return {
lua = { "stylua" }, lua = { "stylua" },
python = { "isort", "black" }, python = { "isort", "black" },
javascript = { "prettierd", "prettier", stop_after_first = true }, javascript = { "prettierd", "prettier", stop_after_first = true },
rust = { "rustfmt" }, rust = { "rustfmt", "leptosfmt" },
go = { "gofmt" } go = { "gofmt" },
yaml = { "yamlfmt" }
}, },
-- -- Set up format-on-save -- -- Set up format-on-save
format_on_save = { timeout_ms = 500, lsp_fallback = true }, format_on_save = { timeout_ms = 500, lsp_fallback = true },

View File

@ -1,5 +1,6 @@
return { return {
"github/copilot.vim", "github/copilot.vim",
enabled = false,
config = function() config = function()
-- vim.g.copilot_no_tab_map = true -- vim.g.copilot_no_tab_map = true
vim.api.nvim_set_keymap("i", "<C-J>", 'copilot#Accept("<CR>")', { silent = true, expr = true }) vim.api.nvim_set_keymap("i", "<C-J>", 'copilot#Accept("<CR>")', { silent = true, expr = true })

View File

@ -77,5 +77,6 @@ return {
color_square_width = 2, color_square_width = 2,
}) })
end end
} },
"https://github.com/tpope/vim-dotenv"
} }

View File

@ -1,8 +1,9 @@
return { return {
{ {
'mrcjkb/rustaceanvim', 'mrcjkb/rustaceanvim',
version = '^4', -- Recommended version = '^5', -- Recommended
ft = { 'rust' }, ft = { 'rust' },
lazy = false
}, },
{ {
"ray-x/go.nvim", "ray-x/go.nvim",

View File

@ -18,10 +18,10 @@ return {
-- you can enable a preset for easier configuration -- you can enable a preset for easier configuration
presets = { presets = {
bottom_search = true, -- use a classic bottom cmdline for search bottom_search = true, -- use a classic bottom cmdline for search
command_palette = false, -- position the cmdline and popupmenu together command_palette = false, -- position the cmdline and popupmenu together
long_message_to_split = true, -- long messages will be sent to a split long_message_to_split = true, -- long messages will be sent to a split
inc_rename = false, -- enables an input dialog for inc-rename.nvim inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = true, -- add a border to hover docs and signature help lsp_doc_border = true, -- add a border to hover docs and signature help
}, },
routes = { routes = {
{ {
@ -37,8 +37,6 @@ return {
}, },
}) })
require("notify").setup({ require("notify").setup({})
background_colour = "#000000",
})
end end
} }

View File

@ -32,6 +32,6 @@ return {
require('rainbow-delimiters.setup').setup() require('rainbow-delimiters.setup').setup()
end end
}, },
-- "nvim-treesitter/nvim-treesitter-context" "nvim-treesitter/nvim-treesitter-context"
} }

View File

@ -1,6 +1,7 @@
return { return {
"folke/which-key.nvim", "folke/which-key.nvim",
event = "VeryLazy", event = "VeryLazy",
enabled = false,
opts = { opts = {
-- your configuration comes here -- your configuration comes here
-- or leave it empty to use the default settings -- or leave it empty to use the default settings