Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
Tweak formatting and remove obsoleted config
Browse files Browse the repository at this point in the history
  • Loading branch information
Springok committed Sep 27, 2022
1 parent 9c78159 commit 4ac534b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 5 additions & 3 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ require "config.bufferline"
-- ================
-- Theme
-- ================
vim.g.onedark_config = {style= "warmer"}
vim.g.onedark_config = { style = "warmer" }
vim.cmd [[colorscheme onedark]]
-- vim.g.vscode_style = "dark"
-- vim.cmd [[colorscheme vscode]]
Expand All @@ -45,10 +45,12 @@ null_ls.setup({
sources = {
diagnostics.rubocop.with({
command = "bundle",
args = vim.list_extend({ "exec", "rubocop" }, diagnostics.rubocop._opts.args) }),
args = vim.list_extend({ "exec", "rubocop" }, diagnostics.rubocop._opts.args)
}),
formatting.rubocop.with({
command = "bundle",
args = vim.list_extend({ "exec", "rubocop" }, formatting.rubocop._opts.args) }),
args = vim.list_extend({ "exec", "rubocop" }, formatting.rubocop._opts.args)
}),
diagnostics.trail_space,
-- clojure lsp supported by default
-- diagnostics.clj_kondo,
Expand Down
1 change: 0 additions & 1 deletion lua/config/nvim-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ nvim_tree.setup {
},
view = {
width = 30,
height = 30,
hide_root_folder = false,
side = "left",
mappings = {
Expand Down

0 comments on commit 4ac534b

Please sign in to comment.