some shit

This commit is contained in:
2022-11-21 15:27:39 +01:00
parent 397915ca7c
commit 4292b41bb4
9 changed files with 144 additions and 62 deletions

View File

@@ -39,7 +39,7 @@ map("n", "<leader>t", translate, remap)
map("v", "<leader>t", translate, remap)
-- DAP Functionality
map("n", "<Leader>b", ":lua require('dap').toggle_breakpoint()", options)
map("n", "<Leader>b", ":lua require('dap').toggle_breakpoint()<CR>", options)
-- Test Functionality
map("n", "tt", ":lua require('neotest').run.run()<CR>", options)

View File

@@ -58,7 +58,7 @@ vim.cmd("syntax sync minlines=256")
set.mousescroll = "ver:1,hor:1"
set.shiftwidth = 2 -- Change the number of space characters inserted for indentation
set.showtabline = 1 -- Always show tabs
set.cmdheight = 0 -- More space for displaying messages
set.cmdheight = 1 -- More space for displaying messages
vim.cmd([[set nowrap]]) -- Display long lines as just one line
vim.cmd([[set noshowmode]]) -- We don't need to see things like -- INSERT -- anymore
vim.cmd([[syntax enable]]) -- Enables syntax highlighing

View File

@@ -103,6 +103,11 @@ return packer.startup(function(use)
---------------
use("neovim/nvim-lspconfig")
use({ 'j-hui/fidget.nvim',
config = function()
require('fidget').setup()
end
})
use("williamboman/mason.nvim")
use("williamboman/mason-lspconfig.nvim")
use("jose-elias-alvarez/null-ls.nvim")
@@ -213,8 +218,10 @@ return packer.startup(function(use)
})
-- Dap Debugger -- Have not yet been able to set this up
-- use({ "mfussenegger/nvim-dap" })
-- use({ "rcarriga/nvim-dap-ui" free
use({ "mfussenegger/nvim-dap" })
use({ "rcarriga/nvim-dap-ui" })
use { "mxsdev/nvim-dap-vscode-js", requires = { "mfussenegger/nvim-dap" } }
use("editorconfig/editorconfig-vim")
use({
"michaelb/sniprun",