commit dc08296833d4e27f91bff440db2df8cee11f8f93 from: Andre Mazzotti Bertachini date: Tue Dec 16 10:39:35 2025 UTC More subtle colors, smaller filepicker commit - 19c50a7a59ece2650838e6a4e9c7d44c7a59830e commit + dc08296833d4e27f91bff440db2df8cee11f8f93 blob - 509219a6609da4c45a0c7dd913e1484b77164ebb blob + a422c2dbc1fb185e4ecfe2c7c0b0c8a566b13788 --- lua/config/colors.lua +++ lua/config/colors.lua @@ -3,15 +3,12 @@ vim.opt.background = 'dark' vim.cmd.colorscheme('quiet') vim.api.nvim_set_hl(0, 'Keyword', { bold = true }) -vim.api.nvim_set_hl(0, 'String', { fg = '#037d50' }) -vim.api.nvim_set_hl(0, 'IncSearch', { bg = '#808080' }) -vim.api.nvim_set_hl(0, 'Comment', { italic = true }) +vim.api.nvim_set_hl(0, 'Comment', {fg = '#696969', italic = true }) +vim.api.nvim_set_hl(0, 'String', { fg = '#008000' }) vim.api.nvim_set_hl(0, 'Constant', { fg = '#999999' }) vim.api.nvim_set_hl(0, 'Visual', { bg = '#555555' }) -vim.api.nvim_set_hl(0, 'NormalFloat', { bg = '#333333' }) -vim.api.nvim_set_hl(0, 'Normal', { fg = '#E5D3B3' }) -vim.api.nvim_set_hl(0, 'DiagnosticError', { fg = '#888888' }) -vim.api.nvim_set_hl(0, 'DiagnosticVirtualTextError', { fg = '#888888' }) -vim.api.nvim_set_hl(0, 'DiagnosticWarn', { fg = '#777777' }) -vim.api.nvim_set_hl(0, 'DiagnosticVirtualTextWarn', { fg = '#777777' }) +vim.api.nvim_set_hl(0, 'DiagnosticError', { fg = '#708090' }) +vim.api.nvim_set_hl(0, 'DiagnosticVirtualTextError', { fg = '#708090' }) +vim.api.nvim_set_hl(0, 'DiagnosticWarn', { fg = '#708090' }) +vim.api.nvim_set_hl(0, 'DiagnosticVirtualTextWarn', { fg = '#708090' }) vim.api.nvim_set_hl(0, 'MatchParen', { fg = '#888888', bg = '#333333' }) blob - c2e6a2ee5d2a9c0bc89965e07bdb3954ee4c72c5 blob + 2e1a2c7f1073e17b86f23a92913ed9e44e015a46 --- lua/plugins/telescope.lua +++ lua/plugins/telescope.lua @@ -24,7 +24,7 @@ return { file_ignore_patterns = { 'node_modules', '^package%-lock%.json$', - '__init__.py' + '__init__.py', }, mappings = { i = { @@ -38,9 +38,14 @@ return { }, }, pickers = { - -- find_files = { - -- theme = "ivy" - -- } + find_files = { + layout_config = { + height = 0.4, + width = 0.4, + prompt_position = 'top', + }, + previewer = false, + }, }, extensions = { ['ui-select'] = {