Small improvements
This commit is contained in:
parent
8a3fe4fb0b
commit
2188a51eb0
3
init.lua
3
init.lua
|
@ -772,6 +772,7 @@ require('lazy').setup({
|
|||
end,
|
||||
formatters_by_ft = {
|
||||
lua = { 'stylua' },
|
||||
htmlangular = { 'prettier' },
|
||||
-- Conform can also run multiple formatters sequentially
|
||||
-- python = { "isort", "black" },
|
||||
--
|
||||
|
@ -915,7 +916,7 @@ require('lazy').setup({
|
|||
config = function()
|
||||
require('everforest').setup {
|
||||
background = 'hard',
|
||||
ui_contrast = 'low',
|
||||
ui_contrast = 'high',
|
||||
}
|
||||
|
||||
-- Load the colorscheme here.
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
"conform.nvim": { "branch": "master", "commit": "6632e7d788a85bf8405ea0c812d343fc308b7b8c" },
|
||||
"everforest-nvim": { "branch": "main", "commit": "135cc21a45756e688dd1a3cbeb1c80a04b569b46" },
|
||||
"fidget.nvim": { "branch": "main", "commit": "d9ba6b7bfe29b3119a610892af67602641da778e" },
|
||||
"github-theme": { "branch": "main", "commit": "c106c9472154d6b2c74b74565616b877ae8ed31d" },
|
||||
"gitsigns.nvim": { "branch": "main", "commit": "02eafb1273afec94447f66d1a43fc5e477c2ab8a" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
|
||||
"lazydev.nvim": { "branch": "main", "commit": "2367a6c0a01eb9edb0464731cc0fb61ed9ab9d2c" },
|
||||
|
|
|
@ -34,7 +34,7 @@ return {
|
|||
keys = {
|
||||
{ -- NOTE: Temporary solution to open chrome - until I'll figure out how to run it automatically
|
||||
'<leader>dd',
|
||||
':!open -a "Google Chrome" --args --remote-debugging-port=9222<CR>',
|
||||
':!open -a "Google Chrome" --args --remote-debugging-port=9222<CR><CR>',
|
||||
},
|
||||
-- TODO: change lua formatter to keep such entries in one line
|
||||
{
|
||||
|
|
|
@ -14,6 +14,11 @@ return {
|
|||
{ '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true },
|
||||
},
|
||||
opts = {
|
||||
default_component_configs = {
|
||||
indent = {
|
||||
indent_size = 1,
|
||||
},
|
||||
},
|
||||
filesystem = {
|
||||
window = {
|
||||
mappings = {
|
||||
|
|
Loading…
Reference in New Issue