tangled
alpha
login
or
join now
boltless.me
/
nvim_rocks
0
fork
atom
neovim configuration using rocks.nvim plugin manager
0
fork
atom
overview
issues
pulls
pipelines
chore: misc
Seongmin Lee
11 months ago
7f40aab3
a5ebd8ab
+4
-6
2 changed files
expand all
collapse all
unified
split
after
ftplugin
norg.vim
lua
core
abbrevs.lua
+2
-6
after/ftplugin/norg.vim
···
1
1
-
nnoremap <buffer> j gj
2
2
-
nnoremap <buffer> k gk
3
3
-
nnoremap <buffer> 0 g0
4
4
-
nnoremap <buffer> ^ g^
5
5
-
nnoremap <buffer> $ g$
6
6
-
7
1
setlocal breakindent
8
2
setlocal formatoptions-=r
9
3
setlocal linebreak
10
4
setlocal shiftwidth=1
11
5
setlocal wrap
6
6
+
7
7
+
nnoremap <cr> :if &conceallevel > 0 \| set conceallevel=0 \| else \| set conceallevel=3 \| endif<CR>
+2
lua/core/abbrevs.lua
···
7
7
vim.cmd[[
8
8
inoreabbrev Hanlder Handler
9
9
inoreabbrev sapce space
10
10
+
inoreabbrev lien line
11
11
+
inoreabbrev liens lines
10
12
]]