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
98579125
42f833af
+15
-2
4 changed files
expand all
collapse all
unified
split
after
ftplugin
norg.vim
lua
core
highlights.lua
plugins
nvim-surround.lua
rocks.toml
+9
-1
after/ftplugin/norg.vim
···
4
4
setlocal shiftwidth=1
5
5
setlocal wrap
6
6
7
7
-
nnoremap <cr> :if &conceallevel > 0 \| set conceallevel=0 \| else \| set conceallevel=3 \| endif<CR>
7
7
+
function! ToggleConcealLevel()
8
8
+
if &conceallevel > 0
9
9
+
set conceallevel=0
10
10
+
else
11
11
+
set conceallevel=3
12
12
+
endif
13
13
+
endfunction
14
14
+
15
15
+
nnoremap <CR> <cmd>call ToggleConcealLevel()<CR>
+1
-1
lua/core/highlights.lua
···
18
18
local tbl = {
19
19
["github_dark_default"] = function()
20
20
util_hl().set("StatusLineNC", { reverse = true, inherit = "StatusLine" })
21
21
-
util_hl().set("@markup.raw", { italic = false })
21
21
+
util_hl().set("@markup.raw", { italic = false, reverse = true })
22
22
util_hl().set("DiagnosticLineError", { bg = util_hl().tint(util_hl().get("DiagnosticVirtualTextError", "fg"), -0.8) })
23
23
util_hl().set("DiagnosticLineWarn", { bg = util_hl().tint(util_hl().get("DiagnosticVirtualTextWarn", "fg"), -0.8) })
24
24
util_hl().set("DiagnosticLineInfo", { bg = util_hl().tint(util_hl().get("DiagnosticVirtualTextInfo", "fg"), -0.8) })
+1
lua/plugins/nvim-surround.lua
···
12
12
change = "cs",
13
13
delete = "ds",
14
14
},
15
15
+
indent_lines = false,
15
16
})
+4
rocks.toml
···
102
102
tree-sitter-scheme = "0.0.31"
103
103
nvim-parinfer = "1.2.0"
104
104
105
105
+
[plugins."janet.vim"]
106
106
+
git = "janet-lang/janet.vim"
107
107
+
rev = "67075b190a44310df356137e35cc1949782b20e0"
108
108
+
105
109
# [plugins."xcodebuild.nvim"]
106
110
# git = "wojciech-kulik/xcodebuild.nvim"
107
111
# rev = "v5.3.0"