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 fn = vim.fn
local g = vim.g
opt.autoindent = true
opt.autoread = true
@@ -43,8 +44,16 @@ opt.titlestring = [[NVIM: [%{fnamemodify(getcwd(), ':t')}] %t]]
opt.cursorline = 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 --
+1
View File
@@ -38,6 +38,7 @@ require("packer").startup(
--use "jiangmiao/auto-pairs"
use "dense-analysis/ale"
--use "nathanmsmith/nvim-ale-diagnostic"
use "turbio/bracey.vim"
-- LSP
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}