Skip to content
/ WVim Public

Vim configuration and instalation developed by Wedsley Fernando, clone and be happy

Notifications You must be signed in to change notification settings

wmilou/WVim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WVIM

dashboard


What are the possibilities with WVIM?

LSP (language server protocol)

python-auto-import

Snips

gif-snip-html5

Easy navigation

easy-navigation

Terminal integration

terminal-integration


Getting Started

How to Install


Install it with one Line

bash <(curl -s https://raw.githubusercontent.com/wmilou/WVim/master/install_script/install.sh)

Download and Install all packages

To load packages, open Nvim and exec

Inside nvim exec command

:PackerInstall

Keymappings

All keymappings you can find inside file lua/config/nvim/keymappings.lua

How to Add Keymapping

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

How to configure nvim

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)

How to change colorscheme

To change colorscheme edit file located on lua/config/nvim/colorscheme.lua

Example of change color:

-- set color scheme
vim.cmd 'colorscheme gotham'

How to configure Plugin

All configuration of the plugins are located in lua/config/{plugin-name}/config.lua


How to install new plugin

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')

How to add LSP

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

About

Vim configuration and instalation developed by Wedsley Fernando, clone and be happy

Resources

Stars

Watchers

Forks

Packages

No packages published