dotfiles/home/.config/nvim/lua/plugins.d/polyglot.lua

12 lines
428 B
Lua
Raw Normal View History

2021-12-03 16:33:49 +00:00
local vim = require("vim")
local cmd = vim.cmd
local g = vim.g
cmd[[Plug 'sheerun/vim-polyglot']]
-- Disable polyglot's "sensible" settings, while there are some nice things it
-- does, I set these manually in my default config and I don't like depending
-- on single plugin for so many things, doing it manually doing it manually is
-- also more explicit making it obvious what's happening
g.polyglot_disabled = {'sensible'}