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 8
8
let
9
9
cfg = config . conf . nvim ;
10
10
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
+ # };
30
20
31
21
# 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
+ # };
41
31
42
32
colorscheme = with pkgs . vimPlugins ; [
43
33
solarized-nvim
99
89
neotest
100
90
neotest-go
101
91
nvim-coverage
102
- rest-nvim
103
- hurl-nvim
92
+ # rest-nvim
93
+ # hurl-nvim
104
94
] ;
105
95
106
96
telescope = with pkgs . vimPlugins ; [
132
122
harpoon
133
123
oil-nvim
134
124
markdown-preview-nvim
135
- cmp-go-pkgs
136
125
noice-nvim
137
126
nvim-notify
138
127
dressing-nvim
Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ cmp.setup {
59
59
{ name = ' nvim_lsp' },
60
60
{ name = ' nvim_lsp_signature_help' },
61
61
{ name = ' path' },
62
- { name = ' go_pkgs' },
63
62
},
64
63
snippet = {
65
64
expand = function (args )
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ telescope.load_extension('fzf')
86
86
telescope .load_extension (' manix' )
87
87
telescope .load_extension (' dap' )
88
88
telescope .load_extension (' git_worktree' )
89
- telescope .load_extension (' rest' )
89
+ -- telescope.load_extension('rest')
90
90
91
91
local nmap = Lib .keymapper (' n' , { silent = true })
92
92
nmap (' <C-p>' , builtin .find_files )
@@ -97,4 +97,4 @@ nmap('<Leader>fo', builtin.vim_options)
97
97
nmap (' <Leader>fk' , builtin .keymaps )
98
98
nmap (' <Leader>fg' , extensions .live_grep_args .live_grep_args )
99
99
nmap (' <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 1
1
local neotest = require (' neotest' )
2
2
local 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')
5
5
6
6
coverage .setup {
7
7
commands = false ,
@@ -40,15 +40,15 @@ neotest.setup {
40
40
},
41
41
}
42
42
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
+ -- }
48
48
49
- hurl .setup {
50
- env_file = { ' .env' },
51
- }
49
+ -- hurl.setup {
50
+ -- env_file = { '.env' },
51
+ -- }
52
52
53
53
local nmap = Lib .keymapper (' n' , { silent = true })
54
54
nmap (' <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