38 lines
1.1 KiB
Markdown
38 lines
1.1 KiB
Markdown
# dotfiles
|
|
|
|
## Pacman parallel download
|
|
uncomment the relevant line in `/etc/pacman.conf`
|
|
|
|
## Yay colorfull
|
|
enable colors in `/etc/pacman.conf`
|
|
|
|
## Redshift and Geoclue
|
|
before using Redshift enable the geoclue agent
|
|
```bash
|
|
systemctl --user start geoclue-agent.service
|
|
```
|
|
|
|
## Keyboard Layout
|
|
Because I exclusively use German keyboards I need to change some settings
|
|
### Console
|
|
Follow guide [here](https://wiki.archlinux.org/title/Installation_guide#Set_the_console_keyboard_layout_and_font)
|
|
|
|
Edit `/etc/vconsole.conf`
|
|
```
|
|
KEYMAP=de-latin1
|
|
```
|
|
|
|
### Xorg
|
|
Follow guide [here](https://wiki.archlinux.org/title/Xorg/Keyboard_configuration#Using_localectl)
|
|
``` bash
|
|
sudo localectl set-x11-keymap de
|
|
```
|
|
|
|
## Doom Emacs
|
|
1. emacs and optional dependencies should be included in `pkglist.txt`
|
|
2. [install](https://github.com/doomemacs/doomemacs/tree/master#install) [Doom Emacs](https://github.com/doomemacs/doomemacs)
|
|
```bash
|
|
git clone --depth 1 https://github.com/doomemacs/doomemacs ~/.config/emacs
|
|
~/.config/emacs/bin/doom install
|
|
```
|
|
3. activate `literate` in `init.el` to be able to use the `config.org` file |