Updated neovim config
This commit is contained in:
parent
5a4ce9b2aa
commit
00898fae4c
1 changed files with 10 additions and 1 deletions
|
@ -2,8 +2,14 @@
|
|||
My NeoVim configuration
|
||||
--]]
|
||||
|
||||
-- disable netrw at the very start of your init.lua
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
-- Plugins
|
||||
require('nvim-web-devicons').setup()
|
||||
require('oil').setup()
|
||||
-- require('oil').setup()
|
||||
require('nvim-tree').setup()
|
||||
require('gitsigns').setup()
|
||||
require('lspconfig').phpactor.setup({})
|
||||
|
||||
|
@ -12,3 +18,6 @@ vim.wo.number = true
|
|||
|
||||
vim.opt.spelllang = 'en_gb'
|
||||
vim.opt.spell = true
|
||||
|
||||
-- 24-bit colour support
|
||||
vim.opt.termguicolors = true
|
||||
|
|
Loading…
Add table
Reference in a new issue