mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
chore: Annoyance fixes across all
- bashrc: source `.profile` and not `profile` - kitty: Remove background-blur, it was making terminal slow - kitty: ssh: Rename the terminal to `xterm-256color` cause most cloud linux don't have kitty terminal info by default - nvim: `get_active_clients` marked for removal by nvim, replaced - nvim: completion: don't auto complete on command mode - nvim: Use `flash.nvim` for jumping instead of `vim-easymotion` - vim: Open file tree `<leader>e` -> `<leader><tab>` - profile: KVM: Use the system access by default
This commit is contained in:
@@ -1,11 +1,4 @@
|
||||
return {
|
||||
{
|
||||
"easymotion/vim-easymotion",
|
||||
keys = {
|
||||
{ "<leader>j", "<Plug>(easymotion-s)", desc = "Easymotion jump" },
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"unblevable/quick-scope",
|
||||
init = function()
|
||||
@@ -18,6 +11,21 @@ return {
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"folke/flash.nvim",
|
||||
event = "VeryLazy",
|
||||
---@type Flash.Config
|
||||
opts = {
|
||||
highlight = { backdrop = false },
|
||||
modes = { char = { enabled = false } },
|
||||
},
|
||||
-- stylua: ignore
|
||||
keys = {
|
||||
{ "<leader>j", mode = { "n", "x", "o" }, function() require("flash").jump() end, desc = "Flash jump" },
|
||||
{ "<leader>cH", mode = { "n", "x", "o" }, function() require("flash").treesitter() end, desc = "Highlight a code block" },
|
||||
},
|
||||
},
|
||||
|
||||
-- File Explorer: Neotree
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
|
||||
Reference in New Issue
Block a user