summaryrefslogtreecommitdiff
path: root/README.md
blob: 92a230d878123f0c24484b7c57f6c4fccc766fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# dotfiles

## notes
you need neovim 0.10.1 at least
best to compile nvim from source
first uninstall nvim
```
sudo apt uninstall nvim neovim
```
then make sure nvim isnt installed somewhere else
```
where nvim
```
if it is, delete it
then, build and install neovim from source:
```
git clone https://github.com/neovim/neovim.git
cd neovim
sudo make release
sudo make install
```

## install

1. install zsh (sudo apt install zsh)
2. install oh-my-zsh
```
sh -c $(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)
```
3. put config in ~/.config/
4. put vimrc in ~/.vimrc
5. run:
```
ln -s ~/.config/nvim/init.vim ~/.vimrc
```
6. open vim
7. run :PlugInstall
8. enjoy

## for completions

1. install tabby
https://tabby.tabbyml.com/docs/quick-start/installation/linux/
2. register an account
https://tabby.tabbyml.com/docs/quick-start/register-account/
3. copy your api key into ~/.tabby_client/agent/config.toml
4. enjoy

## for local llm (avante)

1. install ollama
2. run ollama (probably wanna add this to startup
```
ollama serve
```
3. install the model
```
ollama pull llama3.1:8b-instruct-q5_K_M
```
4. enjoy