alexjercan / nvim.dotfiles

My dotfiles for neovim
20 stars 2 forks source link

Unsupported distro: endeavouros #1

Closed Landixbtw closed 9 months ago

Landixbtw commented 9 months ago

Hey, I was going to install your config since I really like it. But apparently endeavourOS is not supported. Would love for you to add it to the supported distros.

alexjercan commented 9 months ago

Hi! I think it was just a matter of adding the name of the distro in the install script. Can you check if the feature/endeavouros branch works?

git fetch origin
git checkout feature/endeavouros
./install
Landixbtw commented 9 months ago

This works, I guess. But there are a few things that dont work. I believe.

The bar down here is missing.

grafik

And what is the default leader key ? To access the whichkey

alexjercan commented 9 months ago

The default leader key in neovim is spacebar, you can change it in https://github.com/alexjercan/nvim.dotfiles/blob/master/nvim/lua/neovim/remap.lua#L1C1-L1C22 For tmux it is ctrl+space.

The bar is missing because you need to start tmux. You can check out this script https://github.com/alexjercan/nvim.dotfiles/blob/master/scripts/tmux-sessionizer which should be available in ~/.local/bin. I would change selected=$(find ~/personal ~/work -mindepth 1 -maxdepth 1 -type d | fzf) in here ~/personal and ~/work with the directory where you keep your projects. I don't have a good way of doing it right now so it is a bit manual :).