File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ # kulala.nvim
2
+
3
+ A minimal 🤏 HTTP-client 🐼 interface 🖥️ for Neovim ❤️.
4
+
5
+ Dependencies:
6
+
7
+ - System-wide
8
+ - curl
9
+ For additional dependencies, see the docs.
10
+
11
+ ** Repository:** : < https://github.com/mistweaverco/kulala.nvim >
Original file line number Diff line number Diff line change
1
+ local prefix = " <Leader>R"
2
+
3
+ return {
4
+ " mistweaverco/kulala.nvim" ,
5
+ ft = { " http" , " rest" },
6
+ dependencies = {
7
+ {
8
+ " nvim-treesitter/nvim-treesitter" ,
9
+ opts = function (_ , opts )
10
+ if opts .ensure_installed ~= " all" then
11
+ opts .ensure_installed = require (" astrocore" ).list_insert_unique (opts .ensure_installed , { " http" })
12
+ end
13
+ end ,
14
+ },
15
+ },
16
+ specs = {
17
+ {
18
+ " AstroNvim/astroui" ,
19
+ --- @type AstroUIOpts
20
+ opts = { icons = { KulalaNvim = " " } },
21
+ },
22
+ {
23
+ " AstroNvim/astrocore" ,
24
+ opts = function (_ , opts )
25
+ local maps = opts .mappings
26
+ maps .n [prefix ] = { desc = require (" astroui" ).get_icon (" KulalaNvim" , 1 , true ) .. " KulalaNvim" }
27
+ end ,
28
+ },
29
+ },
30
+ opts = {
31
+ global_keymaps = true ,
32
+ },
33
+ }
You can’t perform that action at this time.
0 commit comments