diff options
| author | William Boman <william@redwill.se> | 2022-06-06 00:28:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-06 00:28:58 +0200 |
| commit | 1a9cdfe4d052dbfa16f3c12ce4def58a931b0730 (patch) | |
| tree | 62d69458bca3db1ee4b4b39de290e8ce3236ff11 /lua/nvim-lsp-installer/settings.lua | |
| parent | fix(platform): memoize .get_libc() ret val (#753) (diff) | |
| download | mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar.gz mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar.bz2 mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar.lz mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar.xz mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.tar.zst mason-1a9cdfe4d052dbfa16f3c12ce4def58a931b0730.zip | |
feat(ui): add setting to customize window border (#754)
Closes #752.
Diffstat (limited to 'lua/nvim-lsp-installer/settings.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/settings.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lua/nvim-lsp-installer/settings.lua b/lua/nvim-lsp-installer/settings.lua index a0641480..d84b60af 100644 --- a/lua/nvim-lsp-installer/settings.lua +++ b/lua/nvim-lsp-installer/settings.lua @@ -21,6 +21,9 @@ local DEFAULT_SETTINGS = { -- Whether to automatically check for outdated servers when opening the UI window. check_outdated_servers_on_open = true, + -- The border to use for the UI window. Accepts same border values as |nvim_open_win()|. + border = "none", + icons = { -- The list icon to use for installed servers. server_installed = "◍", |
