Skip to content

Commit

Permalink
usr: cli: vim: add bloop proxy in .javaopts
Browse files Browse the repository at this point in the history
  • Loading branch information
xieby1 committed Nov 18, 2023
1 parent 71e6502 commit 34c0562
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions usr/cli/vim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -935,4 +935,15 @@ in
nnoremap <silent><nowait> <space>p :<C-u>CocListResume<CR>
'';
};

# nvim-metals proxy for bloop
home.file.jvmopts = {
text = ''
-Dhttps.proxyHost=127.0.0.1
-Dhttps.proxyPort=${toString config.proxyPort}
-Dhttp.proxyHost=127.0.0.1
-Dhttp.proxyPort=${toString config.proxyPort}
'';
target = ".bloop/.jvmopts";
};
}

0 comments on commit 34c0562

Please sign in to comment.