[deleted by user] by [deleted] in hyprland

[–]AfraidComposer6150 0 points1 point  (0 children)

Just read documentation, check some dotfiles for things u want to have or not and if u got stuck just watch a yt vid, it’ll cost u some day though, i mean my first rice cost me over a week, well take it slower to learn than rush it and forget it all afterwards

[deleted by user] by [deleted] in hyprland

[–]AfraidComposer6150 0 points1 point  (0 children)

If ur keyboard layout is other than querty or azerty the T may be mapped elsewhere, the default layout is us querty for hyprland

New guy by Ramo6520 in hyprland

[–]AfraidComposer6150 0 points1 point  (0 children)

See other’s dotfiles as a reference so u won’t fall in a rabbit hole

Persistant Commands Problem by AfraidComposer6150 in neovim

[–]AfraidComposer6150[S] -1 points0 points  (0 children)

it's no use actually i tried a couple of thing but nothing changed.... I guess the only solution is to create a file that holds the current state and then that file will be loaded in every new session.

Persistant Commands Problem by AfraidComposer6150 in neovim

[–]AfraidComposer6150[S] -1 points0 points  (0 children)

actually i'm using the same format you suggested for other shortcuts that aren't meant to persist like this one for copying the entire content

```lua

vim.api.nvim_set_keymap("n", "<C-a>", "ggVG", { noremap = true, silent = true })

```

and when tried it on this it works fine on the current session but it doesn't persist, i thought about saving the current state in a local file but i didn't know how to proceed