LunarVim/README.md

158 lines
4.8 KiB
Markdown
Raw Normal View History

2021-06-30 06:55:40 +02:00
![LunarVim Demo](./utils/media/lunarvim_logo_dark.png)
2021-06-30 20:28:26 +02:00
<div align="center"><p>
2021-08-04 21:20:09 +02:00
<a href="https://github.com/lunarvim/LunarVim/releases/latest">
<img alt="Latest release" src="https://img.shields.io/github/v/release/lunarvim/LunarVim" />
2021-06-30 20:28:26 +02:00
</a>
2021-08-04 21:20:09 +02:00
<a href="https://github.com/lunarvim/LunarVim/pulse">
<img alt="Last commit" src="https://img.shields.io/github/last-commit/lunarvim/LunarVim"/>
2021-06-30 20:28:26 +02:00
</a>
2021-08-04 21:20:09 +02:00
<a href="https://github.com/lunarvim/LunarVim/blob/main/LICENSE">
<img src="https://img.shields.io/github/license/lunarvim/lunarvim?style=flat-square&logo=GNU&label=License" alt="License"
2021-07-06 16:02:40 +02:00
/>
2021-06-30 20:28:26 +02:00
<a href="https://patreon.com/chrisatmachine" title="Donate to this project using Patreon">
<img src="https://img.shields.io/badge/patreon-donate-yellow.svg" alt="Patreon donate button" />
</a>
<a href="https://twitter.com/intent/follow?screen_name=chrisatmachine">
<img src="https://img.shields.io/twitter/follow/chrisatmachine?style=social&logo=twitter" alt="follow on Twitter">
</a>
</p>
2021-07-06 16:02:40 +02:00
2021-06-30 20:28:26 +02:00
</div>
2021-03-27 19:32:45 +01:00
2021-09-02 17:22:51 +02:00
## Documentation
You can find all the documentation for LunarVim at [lunarvim.org](https://www.lunarvim.org)
2021-09-02 17:22:51 +02:00
## Install In One Command!
2021-09-02 17:22:51 +02:00
Make sure you have the release version of Neovim (0.5).
```bash
2021-09-02 17:22:51 +02:00
bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)
```
2021-09-02 17:22:51 +02:00
## Install Language support
2021-07-11 01:25:35 +02:00
2021-09-02 17:22:51 +02:00
- Enter `:LspInstall` followed by `<TAB>` to see your options for LSP
2021-09-02 17:22:51 +02:00
- Enter `:TSInstall` followed by `<TAB>` to see your options for syntax highlighting
**NOTE** I recommend installing `lua` for autocomplete in `config.lua`
2021-09-14 18:17:31 +02:00
![Demo1](./utils/media/demo1.png)
![Demo2](./utils/media/demo2.png)
![Demo3](./utils/media/demo3.png)
2021-07-03 02:58:53 +02:00
## Configuration file
2021-09-02 17:28:16 +02:00
To install plugins configure LunarVim use the `config.lua` located here: `~/.config/lvim/config.lua`
Example:
```lua
2021-07-03 02:58:53 +02:00
-- general
2021-07-25 06:42:38 +02:00
lvim.format_on_save = true
2021-08-30 07:00:58 +02:00
lvim.colorscheme = "onedarker"
2021-07-25 06:42:38 +02:00
lvim.leader = "space"
-- add your own keymapping
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
-- unmap a default keymapping
-- lvim.keys.normal_mode["<C-Up>"] = ""
-- edit a default keymapping
-- lvim.keys.normal_mode["<C-q>"] = ":q<cr>"
2021-08-03 07:04:51 +02:00
-- set keymap with custom opts
-- lvim.keys.insert_mode["po"] = {'<ESC>', { noremap = true }}
-- Use which-key to add extra bindings with the leader-key prefix
2021-08-23 05:50:36 +02:00
-- lvim.builtin.which_key.mappings["P"] = { "<cmd>Telescope projects<CR>", "Projects" }
2021-07-25 06:42:38 +02:00
2021-09-02 17:28:16 +02:00
-- Configure builtin plugins
2021-07-25 06:42:38 +02:00
lvim.builtin.dashboard.active = true
lvim.builtin.terminal.active = true
2021-09-02 17:28:16 +02:00
-- Treesitter parsers change this to a table of the languages you want i.e. {"java", "python", javascript}
2021-07-25 06:42:38 +02:00
lvim.builtin.treesitter.ensure_installed = "maintained"
lvim.builtin.treesitter.ignore_install = { "haskell" }
2021-09-02 17:28:16 +02:00
-- Disable virtual text
2021-07-25 06:42:38 +02:00
lvim.lsp.diagnostics.virtual_text = false
-- Select which servers should be configured manually. Requires `:LvimCacheRest` to take effect.
-- See the full default list `:lua print(vim.inspect(lvim.lsp.override))`
vim.list_extend(lvim.lsp.override, { "pyright" })
-- set a formatter, this will override the language server formatting capabilities (if it exists)
local formatters = require "lvim.lsp.null-ls.formatters"
formatters.setup {
{ exe = "black" },
{
exe = "prettier",
---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports.
filetypes = { "typescript", "typescriptreact" },
},
}
-- set additional linters
local linters = require "lvim.lsp.null-ls.linters"
linters.setup {
{ exe = "black" },
{
exe = "eslint_d",
---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports.
filetypes = { "javascript", "javascriptreact" },
},
}
-- Additional Plugins
2021-07-25 06:42:38 +02:00
lvim.plugins = {
{"lunarvim/colorschemes"},
{"folke/tokyonight.nvim"}, {
"ray-x/lsp_signature.nvim",
config = function() require"lsp_signature".on_attach() end,
2021-09-21 09:53:02 +02:00
event = "BufRead"
2021-07-25 06:42:38 +02:00
}
}
```
2021-07-03 02:58:53 +02:00
## Updating LunarVim
- inside LunarVim `:LvimUpdate`
- from the command-line `lvim +LvimUpdate +q`
2021-05-03 02:13:09 +02:00
### Update the plugins
2021-09-14 14:37:09 +02:00
- inside LunarVim `:PackerUpdate`
## Breaking changes
- `lvim.lang.FOO` is no longer supported. Refer to <https://www.lunarvim.org/languages> for up-to-date instructions.
2021-07-03 02:58:53 +02:00
## Resources
2021-04-04 23:21:57 +02:00
2021-07-29 14:10:21 +02:00
- [Documentation](https://www.lunarvim.org)
2021-03-27 01:28:08 +01:00
2021-09-02 17:22:51 +02:00
- [YouTube](https://www.youtube.com/channel/UCS97tchJDq17Qms3cux8wcA)
2021-07-03 02:58:53 +02:00
- [Discord](https://discord.gg/Xb9B4Ny)
2021-03-22 01:59:02 +01:00
2021-07-03 02:58:53 +02:00
- [Twitter](https://twitter.com/chrisatmachine)
2021-06-30 20:28:26 +02:00
## Testimonials
> "I have the processing power of a potato with 4 gb of ram and LunarVim runs perfectly."
>
> - @juanCortelezzi, LunarVim user.
2021-06-30 20:28:26 +02:00
2021-07-10 05:02:42 +02:00
> "My minimal config with a good amount less code than LunarVim loads 40ms slower. Time to switch."
>
2021-07-10 05:02:42 +02:00
> - @mvllow, Potential LunarVim user.
<div align="center" id="madewithlua">
2021-07-06 15:50:53 +02:00
[![Lua](https://img.shields.io/badge/Made%20with%20Lua-blue.svg?style=for-the-badge&logo=lua)](#madewithlua)
2021-07-06 15:50:53 +02:00
</div>