Skip to content

Commit 3ae22ef

Browse files
themes
1 parent a74c09f commit 3ae22ef

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ require('lazy').setup({
787787
-- Load the colorscheme here.
788788
-- Like many other themes, this one has different styles, and you could load
789789
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
790-
vim.cmd.colorscheme 'tokyonight-night'
790+
-- vim.cmd.colorscheme 'tokyonight-night'
791791

792792
-- You can configure highlights by doing something like:
793793
vim.cmd.hi 'Comment gui=none'
@@ -911,5 +911,6 @@ require('lazy').setup({
911911
},
912912
})
913913

914+
vim.cmd.colorscheme 'github_light'
914915
-- The line beneath this is called `modeline`. See `:help modeline`
915916
-- vim: ts=2 sts=2 sw=2 et

lua/custom/plugins/init.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ lint.linters_by_ft = {
4646
ruby = { 'ruby' },
4747
dockerfile = { 'hadolint' },
4848
typescript = { 'eslint_d' },
49+
eruby = { 'erblint' },
4950
}
5051

5152
local conform = require 'conform'
@@ -54,6 +55,7 @@ conform.formatters_by_ft = {
5455
typescript = { 'prettierd ' },
5556
ruby = { 'rubocop' },
5657
markdown = { 'markdownlint' },
58+
eruby = { 'erb_lint' },
5759
}
5860
conform.format_on_save = function(bufnr)
5961
-- Disable "format_on_save lsp_fallback" for languages that don't

0 commit comments

Comments
 (0)