Skip to content

Commit 969dfa1

Browse files
committed
add helix config
1 parent 1036530 commit 969dfa1

2 files changed

Lines changed: 26 additions & 4 deletions

File tree

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
This repository contains my dotfiles and other helpful documents.
44

55
## Getting started on a new machine
6-
1. Clone this repo into `$HOME/tools`
7-
8-
2. `ln -s plavin.github.io/tools/vimrc $HOME/.vimrc`
9-
3. `ln -s plavin.github.io/tools/tmux.conf $HOME/.tmux.conf`
6+
1. Clone this repo into `$HOME/plavin.github.io`
7+
```
8+
git clone git@github.com:plavin/plavin.github.io.git plavin.github.io
9+
ln -s plavin.github.io/tools/vimrc $HOME/.vimrc
10+
ln -s plavin.github.io/tools/tmux.conf $HOME/.tmux.conf
11+
mkdir -p $HOME/.config/helix
12+
ln -s plavin.github.io/tools/config.toml $HOME/.config/helix/
13+
```
1014

1115
## To use the wiki
1216
1. Open the wiki by opening vim (any file, even no file) and typing `\ww`

tools/config.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
theme = "everforest_dark"
2+
3+
[keys.insert]
4+
k = { j = "normal_mode" }
5+
6+
[keys.normal]
7+
"ret" = "goto_word"
8+
9+
[keys.normal."space"]
10+
o = "file_picker_in_current_buffer_directory"
11+
12+
[editor]
13+
cursorline = true
14+
lsp.display-inlay-hints = true
15+
16+
17+
[editor.inline-diagnostics]
18+
cursor-line = "hint"

0 commit comments

Comments
 (0)