Skip to content

Commit

Permalink
Tue Jul 23 10:24:30 AM WIB 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
nsetyo committed Jul 23, 2024
1 parent f2eb178 commit c33007f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 60 deletions.
3 changes: 1 addition & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space

[*.yaml]
indent_style = space
indent_size = 2

[*.lua]
indent_style = space
indent_size = 2

47 changes: 0 additions & 47 deletions config/nvim/lazy-lock.json

This file was deleted.

2 changes: 1 addition & 1 deletion config/nvim/lua/config/options.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ local opt = vim.opt

opt.colorcolumn = "100"
opt.list = true
-- opt.relativenumber = false
opt.listchars = { lead = "·", tab = "· ", trail = "·" }
opt.tabstop = 4
opt.winbar = "%=%m %f"
14 changes: 7 additions & 7 deletions config/nvim/lua/plugins/colorscheme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ return {
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#e78284" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#e5c890" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#8caaee" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#ef9f76" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#a6d189" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#ca9ee6" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#babbf1" })
end)

require("ibl").setup({ indent = { highlight = highlight } })
Expand Down
1 change: 0 additions & 1 deletion config/nvim/lua/plugins/core.lua

This file was deleted.

2 changes: 1 addition & 1 deletion config/nvim/lua/plugins/dashboard.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ return {
"nvimdev/dashboard-nvim",
lazy = false,
opts = function(_, opts)
local logo = {
local logo = {
[[ ]],
[[  ]],
[[ ████ ██████ █████ ██ ]],
Expand Down
10 changes: 10 additions & 0 deletions config/nvim/lua/plugins/formatter.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
return {
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
json = { "prettier" },
},
},
},
}
1 change: 0 additions & 1 deletion config/nvim/lua/plugins/neo-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ return {
opts = {
filesystem = {
filtered_items = {
-- visible = true,
hide_dotfiles = false,
hide_gitignored = true,
never_show = { ".git" },
Expand Down

0 comments on commit c33007f

Please sign in to comment.