-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.md.bak
56 lines (43 loc) · 995 Bytes
/
README.md.bak
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
# Dotfiles
Hello, it's my dotfiles and if you install it you can use it
# How to install neovim
<details>
<summary>Install With <a href="https://github.com/folke/lazy.nvim">lazyvim</a></summary>
```
{
"iafshinafshin/end-line.nvim",
event = { "BufReadPre", "BufNewFile" },
lazy = false,
config = function()
require("end-line").setup()
end,
}
```
</details>
<details>
<summary>Install With <a href="https://github.com/wbthomason/packer.nvim">packer.nvim</a></summary>
```
vim.cmd [[packadd packer.nvim]]
return require('packer').startup(function(use)
use({
'iafshinafshin/end-line.nvim',
event = { "BufReadPre", "BufNewFile" },
config = function()
require("end-line").setup()
end,
})
end)
```
</details>
<details>
<summary>Instal With <a href="https://github.com/junegunn/vim-plug">vim-plug</a></summary>
```
call plug#begin()
Plug 'iafshinafshin/end-line.nvim'
call plug#end()
lua <<EOF
require("end-line").setup()
EOF
```
</details>
<br>