Update nvim config
This commit is contained in:
@@ -6,6 +6,7 @@ return {
|
||||
|
||||
-- use a release tag to download pre-built binaries
|
||||
version = '1.6',
|
||||
|
||||
-- AND/OR build from source, requires nightly: https://rust-lang.github.io/rustup/concepts/channels.html#working-with-nightly-rust
|
||||
-- build = 'cargo build --release',
|
||||
-- If you use nix, you can build from source using latest nightly rust with:
|
||||
|
||||
13
lua/plugins/live-preview.lua
Normal file
13
lua/plugins/live-preview.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
return {
|
||||
{
|
||||
'brianhuster/live-preview.nvim',
|
||||
---@module 'oil'
|
||||
---@type oil.SetupOpts
|
||||
opts = {},
|
||||
-- Optional dependencies
|
||||
dependencies = { { "nvim-telescope/telescope.nvim", opts = {} } },
|
||||
config = function()
|
||||
require("live-preview").setup()
|
||||
end,
|
||||
},
|
||||
}
|
||||
@@ -6,6 +6,7 @@ return {
|
||||
vim.lsp.enable('gopls')
|
||||
vim.lsp.enable('terraformls')
|
||||
vim.lsp.enable('tflint')
|
||||
vim.lsp.enable('marksman')
|
||||
end,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user