Skip to content

Commit

Permalink
removed null-ls, complexity add for auto formatting does not seem wor…
Browse files Browse the repository at this point in the history
…th the time at this point

Signed-off-by: Evan Drake <[email protected]>
  • Loading branch information
snowmang1 committed Mar 21, 2023
1 parent 8fc119f commit 98d138e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 28 deletions.
Empty file added ftplugin/lifelines.lua
Empty file.
11 changes: 5 additions & 6 deletions lua/config/autocmds.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ vim.api.nvim_create_autocmd("TermOpen", {
group = termGrp,
})

vim.cmd [[
augroup cat_compile
autocmd!
autocmd BufWritePost catppuccin.lua source <afile> | CatppuccinCompile
augroup end
]]
-- change to llvm
vim.api.nvim_create_autocmd({'BufEnter'}, {
pattern = {'*.ll'},
command = "set filetype=llvm"
})
21 changes: 0 additions & 21 deletions lua/plugins/StaticAnalysis.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,27 +44,6 @@ return {
end,
},

{
'jose-elias-alvarez/null-ls.nvim',
version = false,
lazy = "VeryLazy",
opts = function ()
return {
root_dir = require("null-ls.utils").root_pattern(".null-ls-root", ".neoconf.json", "Makefile", ".git"),
sources = {
require("null-ls").builtins.formatting.fish_indent,
require("null-ls").builtins.diagnostics.fish,
require("null-ls").builtins.formatting.stylua,
require("null-ls").builtins.formatting.shfmt,
require("null-ls").builtins.diagnostics.flake8,
},
}
end,
config = function (_, opts)
require'null-ls'.setup(opts)
end,
},

{
'williamboman/mason.nvim',
lazy = true,
Expand Down
2 changes: 1 addition & 1 deletion lua/plugins/UI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ return {
},
highlight = false,
separator = "",
depth_limit = 4,
depth_limit = 5,
depth_limit_indicator = "",
safe_output = true
},
Expand Down

0 comments on commit 98d138e

Please sign in to comment.