Compare commits
2 Commits
25a930d330
...
ba8bd22858
Author | SHA1 | Date | |
---|---|---|---|
|
ba8bd22858 | ||
|
d0463a9289 |
32
README.md
Normal file
32
README.md
Normal file
@ -0,0 +1,32 @@
|
||||
# My NeoVim configuration
|
||||
|
||||
## Requirements
|
||||
- NeoVim
|
||||
- [Packer](https://github.com/wbthomason/packer.nvim)
|
||||
|
||||
To install packer run
|
||||
```bash
|
||||
git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||
```
|
||||
|
||||
To run LSP (autocomplete) you will also need the server for that language.
|
||||
Currently, the languages servers that are configured are:
|
||||
- bash (bashls)
|
||||
- c/c++ (ccls)
|
||||
- prisma (prismals)
|
||||
- python (pylsp)
|
||||
- rust (rust_analyzer)
|
||||
- svelte (sveltelsp)
|
||||
- tex (ltex)
|
||||
- ts (tsserver)
|
||||
- vlang (vls)
|
||||
- zig (zls)
|
||||
|
||||
## Some useful shortcuts
|
||||
- ' f': Find files uses fuzzy finding to search for files in the folder you are currently are
|
||||
- ' /': Search the files using grep
|
||||
- '<C-F>': Open file structure
|
||||
- 'gd': Goto definition
|
||||
- 'K': Show call signature
|
||||
- ']d': Goto next error
|
||||
- '[d': Goto previous error
|
@ -12,11 +12,11 @@ vim.opt.background = 'dark'
|
||||
-- vim.g.cyberpunk_cursorline='black'
|
||||
|
||||
-- vim.cmd('colorscheme ayu')
|
||||
-- vim.cmd('colorscheme night_owl_light')
|
||||
vim.cmd('colorscheme night_owl_light')
|
||||
-- vim.cmd('colorscheme eva01')
|
||||
-- vim.cmd('colorscheme cyberpunk')
|
||||
-- vim.cmd('colorscheme catppuccin-latte')
|
||||
vim.cmd('colorscheme oxocarbon')
|
||||
-- vim.cmd('colorscheme oxocarbon')
|
||||
|
||||
-- examples for your init.lua
|
||||
|
||||
|
@ -194,7 +194,7 @@ keymap("n", "]E", function()
|
||||
require("lspsaga.diagnostic").goto_next({ severity = vim.diagnostic.severity.ERROR })
|
||||
end, { silent = true })
|
||||
|
||||
keymap("n","<leader>o", "<cmd>LSoutlineToggle<CR>",{ silent = true })
|
||||
-- keymap("n","<leader>o", "<cmd>LSoutlineToggle<CR>",{ silent = true })
|
||||
keymap("n", "K", "<cmd>Lspsaga hover_doc<CR>", { silent = true })
|
||||
keymap("n", "<A-d>", "<cmd>Lspsaga open_floaterm<CR>", { silent = true })
|
||||
keymap("n", "<A-d>", "<cmd>Lspsaga open_floaterm lazygit<CR>", { silent = true })
|
||||
|
@ -12,7 +12,6 @@ return require('packer').startup(function()
|
||||
use 'thedenisnikulin/vim-cyberpunk'
|
||||
use { "catppuccin/nvim", as = "catppuccin" }
|
||||
use {'nyoom-engineering/oxocarbon.nvim'}
|
||||
use "nyngwang/nvimgelio"
|
||||
|
||||
-- other stuff
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user