Skip to content

Commit 2188a51

Browse files
committed
Small improvements
1 parent 8a3fe4f commit 2188a51

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

init.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,7 @@ require('lazy').setup({
772772
end,
773773
formatters_by_ft = {
774774
lua = { 'stylua' },
775+
htmlangular = { 'prettier' },
775776
-- Conform can also run multiple formatters sequentially
776777
-- python = { "isort", "black" },
777778
--
@@ -915,7 +916,7 @@ require('lazy').setup({
915916
config = function()
916917
require('everforest').setup {
917918
background = 'hard',
918-
ui_contrast = 'low',
919+
ui_contrast = 'high',
919920
}
920921

921922
-- Load the colorscheme here.

lazy-lock.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"conform.nvim": { "branch": "master", "commit": "6632e7d788a85bf8405ea0c812d343fc308b7b8c" },
88
"everforest-nvim": { "branch": "main", "commit": "135cc21a45756e688dd1a3cbeb1c80a04b569b46" },
99
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
10+
"github-theme": { "branch": "main", "commit": "c106c9472154d6b2c74b74565616b877ae8ed31d" },
1011
"gitsigns.nvim": { "branch": "main", "commit": "02eafb1273afec94447f66d1a43fc5e477c2ab8a" },
1112
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
1213
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },

lua/kickstart/plugins/debug.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ return {
3434
keys = {
3535
{ -- NOTE: Temporary solution to open chrome - until I'll figure out how to run it automatically
3636
'<leader>dd',
37-
':!open -a "Google Chrome" --args --remote-debugging-port=9222<CR>',
37+
':!open -a "Google Chrome" --args --remote-debugging-port=9222<CR><CR>',
3838
},
3939
-- TODO: change lua formatter to keep such entries in one line
4040
{

lua/kickstart/plugins/neo-tree.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ return {
1414
{ '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true },
1515
},
1616
opts = {
17+
default_component_configs = {
18+
indent = {
19+
indent_size = 1,
20+
},
21+
},
1722
filesystem = {
1823
window = {
1924
mappings = {

0 commit comments

Comments
 (0)