mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
docs: better configuration documentation
This commit is contained in:
parent
28bb2a9aa3
commit
aeb0e86ea0
1 changed files with 4 additions and 1 deletions
|
@ -53,7 +53,6 @@ after a workspace is joined, more commands become available:
|
||||||
MP command autocompletes available options for current state, so cycle <Tab> if you forget any name
|
MP command autocompletes available options for current state, so cycle <Tab> if you forget any name
|
||||||
|
|
||||||
## configuration
|
## configuration
|
||||||
it's possible to configure global `vim.g.codemp_username` and a `vim.g.codemp_password` which will be used when connecting
|
|
||||||
|
|
||||||
# installation
|
# installation
|
||||||
|
|
||||||
|
@ -63,6 +62,10 @@ it's possible to configure global `vim.g.codemp_username` and a `vim.g.codemp_pa
|
||||||
* download the internal demo bundle from [here](https://github.com/hexedtech/codemp-nvim/releases/tag/v0.1)
|
* download the internal demo bundle from [here](https://github.com/hexedtech/codemp-nvim/releases/tag/v0.1)
|
||||||
* place the whole `codemp` folder under your `.config/nvim/lua` directory
|
* place the whole `codemp` folder under your `.config/nvim/lua` directory
|
||||||
* add `CODEMP = require('codemp')` at the end of your `init.lua`
|
* add `CODEMP = require('codemp')` at the end of your `init.lua`
|
||||||
|
`codemp-nvim` reads some global vim variables for configuration:
|
||||||
|
* `vim.g.codemp_username` will be used when connecting instead of prompting for username
|
||||||
|
* `vim.g.codemp_password` will be used when connecting instead of prompting for password
|
||||||
|
* `vim.g.codemp_neo_tree` will enable the neo-tree window, instead of the crude integrated one
|
||||||
|
|
||||||
## building
|
## building
|
||||||
this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled
|
this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled
|
||||||
|
|
Loading…
Reference in a new issue