fix: update example config

This commit is contained in:
christianchiarulli 2021-09-03 18:38:18 -04:00
parent b22a3ccae6
commit 79a4a42953

View file

@ -11,7 +11,6 @@ an executable
-- general -- general
lvim.log.level = "warn" lvim.log.level = "warn"
lvim.format_on_save = true lvim.format_on_save = true
lvim.lint_on_save = true
lvim.colorscheme = "onedarker" lvim.colorscheme = "onedarker"
-- keymappings [view all the defaults by pressing <leader>Lk] -- keymappings [view all the defaults by pressing <leader>Lk]
@ -90,24 +89,22 @@ lvim.builtin.treesitter.highlight.enabled = true
-- lvim.lang.python.formatters = { -- lvim.lang.python.formatters = {
-- { -- {
-- exe = "black", -- exe = "black",
-- args = {}
-- } -- }
-- } -- }
-- set an additional linter -- set an additional linter
-- lvim.lang.python.linters = { -- lvim.lang.python.linters = {
-- { -- {
-- exe = "flake8", -- exe = "flake8",
-- args = {}
-- } -- }
-- } -- }
-- Additional Plugins -- Additional Plugins
-- lvim.plugins = { -- lvim.plugins = {
-- {"folke/tokyonight.nvim"}, { -- {"folke/tokyonight.nvim"},
-- "ray-x/lsp_signature.nvim", -- {
-- config = function() require"lsp_signature".on_attach() end, -- "folke/trouble.nvim",
-- event = "InsertEnter" -- cmd = "TroubleToggle",
-- } -- },
-- } -- }
-- Autocommands (https://neovim.io/doc/user/autocmd.html) -- Autocommands (https://neovim.io/doc/user/autocmd.html)