nvim-config VS vim-readonly

Compare nvim-config vs vim-readonly and see what are their differences.

nvim-config

following HEAD (nightly build) neovim lua config, for Linux only, clone it to `~/.config/nvim` (by ttys3)

vim-readonly

:eyes: Automatically set readonly option on specific files (by Xvezda)
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
nvim-config vim-readonly
5 2
36 4
- -
7.5 0.0
5 months ago over 3 years ago
Lua Vim Script
- 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.

nvim-config

Posts with mentions or reviews of nvim-config. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-19.

vim-readonly

Posts with mentions or reviews of vim-readonly. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-22.
  • Protect rust source files under ~/.rustup/toolchains/ with NeoVim
    2 projects | /r/neovim | 22 Nov 2021
    _G.protect_rust_files = function() -- protect rust source files under ~/.rustup/toolchains/ -- idea from https://github.com/Xvezda/vim-readonly/blob/master/plugin/readonly.vim -- and https://github.com/rust-lang/rustup/issues/2550 local protect_dirs = { "" .. vim.fn.expand "~" .. "/.rustup/toolchains/", "" .. vim.fn.expand "~" .. "/.cargo/git/", } for _, prefix in ipairs(protect_dirs) do if string.match(vim.fn.expand "%:p", prefix) ~= nil then vim.bo.readonly = true vim.bo.modifiable = false end end end
    3 projects | /r/rust | 22 Nov 2021
    _G.protect_rust_toolchain = function() -- protect rust source files under ~/.rustup/toolchains/ -- idea from https://github.com/Xvezda/vim-readonly/blob/master/plugin/readonly.vim -- and https://github.com/rust-lang/rustup/issues/2550 local rustup_toolchain_root = "" .. vim.fn.expand "~" .. "/.rustup/toolchains/" if string.match(vim.fn.expand "%:p", rustup_toolchain_root) ~= nil then vim.bo.readonly = true vim.bo.modifiable = false end end vim.api.nvim_command("autocmd BufReadPost *.rs lua protect_rust_toolchain()")

What are some alternatives?

When comparing nvim-config and vim-readonly you can also consider the following projects:

nord.nvim - Neovim theme based off of the Nord Color Palette, written in lua with tree sitter support

Rustup - The Rust toolchain installer

lsp-status.nvim - Utility functions for getting diagnostic status and progress messages from LSP servers, for use in the Neovim statusline

neovim - :star2: Cool & Modularized vim configurations to work like an IDE

packer.nvim - A use-package inspired plugin manager for Neovim. Uses native packages, supports Luarocks dependencies, written in Lua, allows for expressive config

vim-startify - :link: The fancy start screen for Vim.

dotfiles - My dotfiles for non-personal stuff

vim-galore - :mortar_board: All things Vim!

NvChad - An attempt to make neovim cli as functional as an IDE while being very beautiful , blazing fast. [Moved to: https://github.com/NvChad/NvChad]

vim-gitbranch - Provides the branch name of the current git repository

nvim-lua-guide - A guide to using Lua in Neovim

vim-devicons - Adds file type icons to Vim plugins such as: NERDTree, vim-airline, CtrlP, unite, Denite, lightline, vim-startify and many more