This commit is contained in:
2021-11-05 17:06:34 -05:00
parent 44a34ed22e
commit 653e600f1c
3 changed files with 17 additions and 2 deletions
+11 -2
View File
@@ -3,6 +3,7 @@ vim.cmd [[au BufRead,BufNewFile .env.* set filetype=sh]]
local opt = vim.opt -- to set options local opt = vim.opt -- to set options
local fn = vim.fn local fn = vim.fn
local g = vim.g
opt.autoindent = true opt.autoindent = true
opt.autoread = true opt.autoread = true
@@ -43,8 +44,16 @@ opt.titlestring = [[NVIM: [%{fnamemodify(getcwd(), ':t')}] %t]]
opt.cursorline = true opt.cursorline = true
opt.cursorcolumn = true opt.cursorcolumn = true
-- "rbgrouleff/bclose.vim" ----------------
vim.g.bclose_no_plugin_maps = true -- BCLOSE.VIM --
----------------
g.bclose_no_plugin_maps = true
----------------
-- BRACEY.VIM --
----------------
-- https://github.com/turbio/bracey.vim
--g.bracey_refresh_on_save = true
----------------------- -----------------------
-- TREESITTER CONFIG -- -- TREESITTER CONFIG --
+1
View File
@@ -38,6 +38,7 @@ require("packer").startup(
--use "jiangmiao/auto-pairs" --use "jiangmiao/auto-pairs"
use "dense-analysis/ale" use "dense-analysis/ale"
--use "nathanmsmith/nvim-ale-diagnostic" --use "nathanmsmith/nvim-ale-diagnostic"
use "turbio/bracey.vim"
-- LSP -- LSP
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"} use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}
+5
View File
@@ -89,6 +89,11 @@ _G.packer_plugins = {
path = "/home/guy/.local/share/nvim/site/pack/packer/start/bclose.vim", path = "/home/guy/.local/share/nvim/site/pack/packer/start/bclose.vim",
url = "https://github.com/rbgrouleff/bclose.vim" url = "https://github.com/rbgrouleff/bclose.vim"
}, },
["bracey.vim"] = {
loaded = true,
path = "/home/guy/.local/share/nvim/site/pack/packer/start/bracey.vim",
url = "https://github.com/turbio/bracey.vim"
},
["cmp-nvim-lsp"] = { ["cmp-nvim-lsp"] = {
loaded = true, loaded = true,
path = "/home/guy/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp", path = "/home/guy/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",