Install it with one Line
bash <(curl -s https://raw.githubusercontent.com/wmilou/WVim/master/install_script/install.sh)
To load packages, open Nvim and exec
Inside nvim exec command
:PackerInstall
All keymappings you can find inside file lua/config/nvim/keymappings.lua
To add keymapping edit the file located in lua/config/nvim/kaymappings.lua
Example of Mapping:
-- ('{mode}', '{keys}', '{mappings}')
utils.map('i', 'jk', '<Esc>') -- jk to escape
To edit config of nvim edit the file located in lua/config/nvim/settings.lua
Example of Config:
-- ({'scope'}, {'config'}, {'value'})
utils.opt('w', 'cursorcolumn', true)
To change colorscheme edit file located on lua/config/nvim/colorscheme.lua
Example of change color:
-- set color scheme
vim.cmd 'colorscheme gotham'
All configuration of the plugins are located in lua/config/{plugin-name}/config.lua
To install a new plugins in WVIM you need edit file lua/plugins.lua
Example of plugins.lua:
-- Use packer to install new plugins
use { 'dracula/vim', as = 'dracula' }
-- For load config use
-- set your config file location
require('config.bufferline.config')
To add new lsp see the documentation of lsp-nvim and edit the file located on lua/config/lsp/languages.lua
Good Luck <3
Developed by : Wedsley Fernando