File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 12
12
"friendly-snippets" : { "branch" : " main" , "commit" : " d1446afecd54d95b1214c6f5a032ad815fbc74d1" },
13
13
"inc-rename.nvim" : { "branch" : " main" , "commit" : " 7c6125b1ee476b56708a6518a37b2a3357f57bfc" },
14
14
"indent-blankline.nvim" : { "branch" : " master" , "commit" : " ece00d5fb44d196680a81fd2761062d2fa44663b" },
15
- "lazy.nvim" : { "branch" : " main" , "commit" : " 8f19915175395680808de529e4220da8dafc0759 " },
15
+ "lazy.nvim" : { "branch" : " main" , "commit" : " fafe1f7c640aed75e70a10e6649612cd96f39149 " },
16
16
"lualine.nvim" : { "branch" : " master" , "commit" : " 0a5a66803c7407767b799067986b4dc3036e1983" },
17
17
"mason-lspconfig.nvim" : { "branch" : " main" , "commit" : " a4caa0d083aab56f6cd5acf2d42331b74614a585" },
18
18
"mason.nvim" : { "branch" : " main" , "commit" : " 49ff59aded1047a773670651cfa40e76e63c6377" },
Original file line number Diff line number Diff line change @@ -4,13 +4,20 @@ return {
4
4
cmd = " RunCode" ,
5
5
config = function ()
6
6
require (' code_runner' ).setup ({
7
+ mode = " float" ,
8
+ float = {
9
+ border = " rounded" ,
10
+ shadow = true ,
11
+ },
7
12
focus = true ,
8
13
filetype = {
9
14
java = {
10
15
" cd $dir &&" ,
11
16
" javac $fileName &&" ,
12
17
" java $fileNameWithoutExt"
13
18
},
19
+ sh = " bash" ,
20
+ go = " go run" ,
14
21
python = " python3 -u" ,
15
22
typescript = " deno run" ,
16
23
javascript = " node" ,
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ nmap("f","zc")
13
13
nmap (" <C-f>" ," zM" )
14
14
nmap (" <C-j>" ," zR" )
15
15
nmap (" <M-e>" ," <Esc>:NvimTreeFindFile<CR>" )
16
+ nmap (" <M-r>" ," <Esc>:RunCode<CR>" )
16
17
nmap (" <C-q>" ," <Esc>:q!<CR>" )
17
18
nmap (" <M-q>" ," <Esc>:qall!<CR>" )
18
19
imap (" <C-q>" ," <Esc>:wq<CR>i" )
You can’t perform that action at this time.
0 commit comments