diff --git a/init.lua b/init.lua index 7f39470..b11b1a9 100644 --- a/init.lua +++ b/init.lua @@ -14,14 +14,7 @@ local keymap = { lsp_show_references = 'gr', lsp_hovering_documentation = 'K', - -- dap is not integrated. Current solution is the execute_script command - -- implemented after line 302 test_execute_script = 'e', - -- test_debug_file = 'd', - -- test_toggle_breakpoint = 'b', - -- test_step_over = nil, - -- test_step_into = nil, - -- test_inspect_state = nil, navigation_toggle_file_explorer ='', @@ -42,11 +35,10 @@ local keymap = { --> Edit snippets for the current file with the custom S command. --> Follow the printed instructions on failure. } - local TAB_WIDTH = 4 ---@type installed_themes -local colorscheme = 'gruvbox' +local colorscheme = 'habamax' vim.o.termguicolors = true vim.cmd('colorscheme ' .. colorscheme) @@ -118,8 +110,6 @@ local function packer_startup(use) 'williamboman/mason-lspconfig.nvim', 'neovim/nvim-lspconfig', } - use 'mfussenegger/nvim-dap' -- debug adapter protocol - use {-- FuzzyFind your way through previously open files, or project files. 'nvim-telescope/telescope.nvim', tag = '0.1.1',