CosmicNvim VS dressing.nvim

Compare CosmicNvim vs dressing.nvim and see what are their differences.

CosmicNvim

CosmicNvim is a lightweight and opinionated Neovim config for web development, specifically designed to provide a šŸ’« COSMIC programming experience! [Moved to: https://github.com/CosmicNvim/CosmicNvim] (by mattleong)

dressing.nvim

Neovim plugin to improve the default vim.ui interfaces (by stevearc)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
CosmicNvim dressing.nvim
19 34
226 1,601
- -
10.0 7.6
over 2 years ago 14 days ago
Lua Lua
GNU General Public License v3.0 only MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

CosmicNvim

Posts with mentions or reviews of CosmicNvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-23.
  • LSP Quickfix plugin suggestions
    4 projects | /r/neovim | 23 Jan 2022
    Hover/Signature with borders https://github.com/mattleong/CosmicNvim/blob/main/lua/cosmic/lsp/init.lua
  • Examples of lazy loading with packer
    5 projects | /r/neovim | 16 Nov 2021
  • CosmicNvim - New Themes!
    6 projects | /r/neovim | 15 Nov 2021
    Hi everyone! Iā€™m happy to announce that CosmicNvim now includes first-class support for 4 additional themes on top of the default for a total of 5 themes to choose from! The current selection: - [Catppuccino](https://github.com/Pocco81/Catppuccino.nvim) - [Gruvbox](https://github.com/ellisonleao/gruvbox.nvim) - [Rose-pine](https://github.com/rose-pine/neovim) - [Nord](https://github.com/shaunsingh/nord.nvim) - [Tokyonight](https://github.com/folke/tokyonight.nvim) Repo: https://github.com/mattleong/CosmicNvim (ā­ļøā€™s are very appreciated!) Iā€™ve previously said that I wouldnā€™t implement first class theme support for CosmicNvim outside of the default themeā€¦ Well, I guess I changed my mind. šŸ˜… For one, itā€™s probably been the most requested feature. For another, I want to be able to swap and play around with themes easily as well. My initial reason for _not_ wanting to include additional theme support was because I was worried about what sort of complexity it would bring. Turns out itā€™s not so bad and doesnā€™t overly bloat the codebase. If you have any suggestions for themes youā€™d like to see implemented, please feel free to drop them in the open [issue](https://github.com/mattleong/CosmicNvim/issues/25)!
    6 projects | /r/neovim | 15 Nov 2021
    If you have any suggestions for themes youā€™d like to see implemented, please feel free to drop them in the open issue!
  • bdelete closes neovim entirely, not just the current buffer
    2 projects | /r/neovim | 15 Nov 2021
    I'm currently using CosmicNvim along with Bufferline. I have bufferline configured to run `:bdelete! %d` as the close command, but event calling `:bdelete` directly has the same result: neovim is closed completely rather than just the current buffer.
  • COC or built-in-lsp
    4 projects | /r/neovim | 11 Nov 2021
    You can check out my config here: https://github.com/mattleong/CosmicNvim
  • Uhoh ... can't uninstall CosmicNVIM - need help.
    1 project | /r/neovim | 10 Nov 2021
    But I didn't do enough research on Cosmic. Installation seemed simple enough. Just git clone. So I backed up my nvim folder and installed it. Carelessly went through the installer. Decided it also wasn't for me. Rather than try to uninstall it, I renamed the folder 'nvim_cosmic' just in case, reverted back to my previous nvim folder, and there's tons of lua related errors.
  • Lua
    11 projects | /r/neovim | 9 Nov 2021
    And currently testing out Cosmic. Just made a backup of my nvim folder first.
  • Neovim distro with lsp, completion, debugging
    3 projects | /r/neovim | 8 Nov 2021
    Take a look at CosmicNvim! (Disclaimer: Iā€™m the author)
  • Neovim IDE
    2 projects | /r/neovim | 6 Nov 2021
    Canā€™t think of any reasons why Cosmic wouldnā€™t work on WSL. Havenā€™t tested it though.

dressing.nvim

Posts with mentions or reviews of dressing.nvim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-20.
  • Update for telescope-all-recent.nvim: Frequency Sorting now for dressing.nvim!
    5 projects | /r/neovim | 20 May 2023
    Frequency Sorting for vim.ui.select: Now you can enjoy (f)recency-based sorting for pickers started through vim.ui.select, provided by dressing.nvim or (untested) telescope-ui-select.nvim. For this to work, make sure to load telescope-all-recent.nvim AFTER dressing.nvim.
  • Requesting help with rust-analyzer, rust-tools and nvim.
    1 project | /r/neovim | 5 May 2023
    For 2, I use dressing.nvim with the options below (requires telescope) and that gives me a nice UI for code actions which you can exist out of. lua { input = { enabled = false }, select = { telescope = require("telescope.themes").get_cursor() }, }
  • How to use telescope to show code actions and codelens instead of noice?
    3 projects | /r/neovim | 27 Apr 2023
    cool, thanks, solved my problem, just checked the codebase again with the vim.ui.select, found the plugin stevearc/dressing.nvim
  • Simple floating ui.input
    3 projects | /r/neovim | 16 Feb 2023
    Dressing works, but most of its code deals with vim.ui.select, which seems slightly overkill here.
  • How to create command completion in a lua config?
    2 projects | /r/neovim | 26 Dec 2022
    In general, vim.ui.input does not seem to be super completion friendly, it seems the only method currently available is to use dressing, cmp, and cmp_omnifunc to get some basic completions that are provided by omnifunc: https://github.com/stevearc/dressing.nvim/issues/55
  • mind.nvim | Part 1/5: Introduction and first features
    3 projects | /r/neovim | 21 Dec 2022
    Are you using https://github.com/stevearc/dressing.nvim by chance??? It's awesome to see ui plugins emerging that can be used in other plugins :)
  • Is it possible to fuzzy search over grep results in Telescope, like with fzf.vim?
    1 project | /r/neovim | 6 Dec 2022
    I wrote this little guy which promots you for your query with vim.ui.input, which is really neat if you have a plugin like dressing.nvim installed
  • Looking for pointers with Python environment setup
    3 projects | /r/neovim | 22 Sep 2022
    it uses vim.ui.select so you can use for example dressing.nvim to use telescope for the UI.
  • Command to scratch buffer
    1 project | /r/neovim | 15 Sep 2022
    I wanted to share a little utility function, I believe is quite useful. It takes a command as input and shows the output in a scratch buffer. Inputting ā€œscratchā€ will open an empty scratch buffer, command completions are enabled. It is based on the builtin vim.ui.input prompt, which can be automatically styled by the excellent dressing.nvim. I often use it to open the current colorschemeā€™s highlight groups in a buffer, with the advantage that colorizer plugins will work then. Or you can check out the latest messages when you got errors in your config, etc. Just donā€™t try to update your operating system through itā€¦
  • [HELP] saving/creating file
    1 project | /r/neovim | 10 Sep 2022
    the little bit of indirection with save_file is required because vim.ui.input might be async (for example if want you're able to use stevearc/dressing.nvim with this snippet without out any modification)

What are some alternatives?

When comparing CosmicNvim and dressing.nvim you can also consider the following projects:

LunarVim - šŸŒ™ LunarVim is an IDE layer for Neovim. Completely free and community driven.

telescope-ui-select.nvim

LunarVim - A Neovim config made with sane defaults

noice.nvim - šŸ’„ Highly experimental plugin that completely replaces the UI for messages, cmdline and the popupmenu.

Nginx-Lua-Anti-DDoS - A Anti-DDoS script to protect Nginx web servers using Lua with a HTML Javascript based authentication puzzle inspired by Cloudflare I am under attack mode an Anti-DDoS authentication page protect yourself from every attack type All Layer 7 Attacks Mitigating Historic Attacks DoS DoS Implications DDoS All Brute Force Attacks Zero day exploits Social Engineering Rainbow Tables Password Cracking Tools Password Lists Dictionary Attacks Time Delay Any Hosting Provider Any CMS or Custom Website Unlimited Attempt Frequency Search Attacks HTTP Basic Authentication HTTP Digest Authentication HTML Form Based Authentication Mask Attacks Rule-Based Search Attacks Combinator Attacks Botnet Attacks Unauthorized IPs IP Whitelisting Bruter THC Hydra John the Ripper Brutus Ophcrack unauthorized logins Injection Broken Authentication and Session Management Sensitive Data Exposure XML External Entities (XXE) Broken Access Control Security Misconfiguration Cross-Site Scripting (XSS) Insecure Deserializati

cosmic-ui - Cosmic-UI is a simple wrapper around specific vim functionality. Built in order to provide a quick and easy way to create a Cosmic UI experience with Neovim!

lspsaga.nvim - The neovim language-server-client UI

legendary.nvim - šŸ—ŗļø A legend for your keymaps, commands, and autocmds, integrates with which-key.nvim, lazy.nvim, and more.

nvim-notify - A fancy, configurable, notification manager for NeoVim

nvim - šŸØ Soothing pastel theme for (Neo)vim

goto-preview - A small Neovim plugin for previewing definitions using floating windows.

nui.nvim - UI Component Library for Neovim.