File tree Expand file tree Collapse file tree 4 files changed +32
-44
lines changed
Expand file tree Collapse file tree 4 files changed +32
-44
lines changed Original file line number Diff line number Diff line change 88let
99 cfg = config . conf . nvim ;
1010
11- cmp-go-pkgs = pkgs . vimUtils . buildVimPlugin {
12- name = "cmp-go-pkgs" ;
13- src = pkgs . fetchFromGitHub {
14- owner = "Snikimonkd" ;
15- repo = "cmp-go-pkgs" ;
16- rev = "7a76e1f9c8d5f40fe27b8d6fcac04de4456875bb" ;
17- sha256 = "sha256-pB7hz/md/5NVYE2FJLNcFkVfUkIxfqr1bJrCtlnIW7w=" ;
18- } ;
19- } ;
20-
21- rest-nvim = pkgs . vimUtils . buildVimPlugin {
22- name = "rest-nvim" ;
23- src = pkgs . fetchFromGitHub {
24- owner = "rest-nvim" ;
25- repo = "rest.nvim" ;
26- rev = "v1.2.1" ;
27- sha256 = "sha256-fX4KIazW7iKO157cQdfBoz7g+eyOSQIFje8ZB7SeAx8=" ;
28- } ;
29- } ;
11+ # rest-nvim = pkgs.vimUtils.buildVimPlugin {
12+ # name = "rest-nvim";
13+ # src = pkgs.fetchFromGitHub {
14+ # owner = "rest-nvim";
15+ # repo = "rest.nvim";
16+ # rev = "v1.2.1";
17+ # sha256 = "sha256-fX4KIazW7iKO157cQdfBoz7g+eyOSQIFje8ZB7SeAx8=";
18+ # };
19+ # };
3020
3121 # TODO: update config and keymap
32- hurl-nvim = pkgs . vimUtils . buildVimPlugin {
33- name = "hurl-nvim" ;
34- src = pkgs . fetchFromGitHub {
35- owner = "jellydn" ;
36- repo = "hurl.nvim" ;
37- rev = "v2.0.0" ;
38- sha256 = "sha256-rnNkWe4zRTIozBJ8iweQWYX4DH84fsjAch+/kGgAj/g=" ;
39- } ;
40- } ;
22+ # hurl-nvim = pkgs.vimUtils.buildVimPlugin {
23+ # name = "hurl-nvim";
24+ # src = pkgs.fetchFromGitHub {
25+ # owner = "jellydn";
26+ # repo = "hurl.nvim";
27+ # rev = "v2.0.0";
28+ # sha256 = "sha256-rnNkWe4zRTIozBJ8iweQWYX4DH84fsjAch+/kGgAj/g=";
29+ # };
30+ # };
4131
4232 colorscheme = with pkgs . vimPlugins ; [
4333 solarized-nvim
9989 neotest
10090 neotest-go
10191 nvim-coverage
102- rest-nvim
103- hurl-nvim
92+ # rest-nvim
93+ # hurl-nvim
10494 ] ;
10595
10696 telescope = with pkgs . vimPlugins ; [
132122 harpoon
133123 oil-nvim
134124 markdown-preview-nvim
135- cmp-go-pkgs
136125 noice-nvim
137126 nvim-notify
138127 dressing-nvim
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ cmp.setup {
5959 { name = ' nvim_lsp' },
6060 { name = ' nvim_lsp_signature_help' },
6161 { name = ' path' },
62- { name = ' go_pkgs' },
6362 },
6463 snippet = {
6564 expand = function (args )
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ telescope.load_extension('fzf')
8686telescope .load_extension (' manix' )
8787telescope .load_extension (' dap' )
8888telescope .load_extension (' git_worktree' )
89- telescope .load_extension (' rest' )
89+ -- telescope.load_extension('rest')
9090
9191local nmap = Lib .keymapper (' n' , { silent = true })
9292nmap (' <C-p>' , builtin .find_files )
@@ -97,4 +97,4 @@ nmap('<Leader>fo', builtin.vim_options)
9797nmap (' <Leader>fk' , builtin .keymaps )
9898nmap (' <Leader>fg' , extensions .live_grep_args .live_grep_args )
9999nmap (' <Leader>fn' , extensions .manix .manix )
100- nmap (' <Leader>en' , extensions .rest .select_env )
100+ -- nmap('<Leader>en', extensions.rest.select_env)
Original file line number Diff line number Diff line change 11local neotest = require (' neotest' )
22local coverage = require (' coverage' )
3- local rest_nvim = require (' rest-nvim' )
4- local hurl = require (' hurl' )
3+ -- local rest_nvim = require('rest-nvim')
4+ -- local hurl = require('hurl')
55
66coverage .setup {
77 commands = false ,
@@ -40,15 +40,15 @@ neotest.setup {
4040 },
4141}
4242
43- rest_nvim .setup {
44- result = {
45- show_curl_command = true ,
46- }
47- }
43+ -- rest_nvim.setup {
44+ -- result = {
45+ -- show_curl_command = true,
46+ -- }
47+ -- }
4848
49- hurl .setup {
50- env_file = { ' .env' },
51- }
49+ -- hurl.setup {
50+ -- env_file = { '.env' },
51+ -- }
5252
5353local nmap = Lib .keymapper (' n' , { silent = true })
5454nmap (' <Leader>tt' , function () neotest .run .run (vim .fn .expand (' %:h' )) end , ' [t]es[t]' )
You can’t perform that action at this time.
0 commit comments