mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-13 03:37:17 +00:00
10 lines
392 B
Lua
10 lines
392 B
Lua
|
local vim = require("vim")
|
||
|
local cmd = vim.cmd
|
||
|
local g = vim.g
|
||
|
|
||
|
-- 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'}
|