diff --git a/lua/binds.lua b/lua/binds.lua index 49ee43c..45bee3f 100644 --- a/lua/binds.lua +++ b/lua/binds.lua @@ -43,7 +43,7 @@ end for func_name, _ in pairs(lsp_buf) do if type(lsp_buf[func_name]) == "function" then -- Check if the value is a function - local command_name = 'LspBuf' .. snake_to_pascal(func_name) + local command_name = 'Lb' .. snake_to_pascal(func_name) vim.api.nvim_create_user_command( command_name, function() @@ -73,8 +73,8 @@ end -- end ]]-- -- end -- ct.map('n', 'c', 'lua toggle_background()') - ct.map('n', 'b', ':buffer') +ct.map('n', 'h', 'lua vim.lsp.buf.hover()') -- -- Commands -- diff --git a/lua/misc.lua b/lua/misc.lua index 31f84c2..6ec31e4 100644 --- a/lua/misc.lua +++ b/lua/misc.lua @@ -39,10 +39,10 @@ vim.g.netrw_browse_split = 0 -- -- EtC. -- -vim.opt.clipboard = "unnamedplus" +-- vim.opt.clipboard = "unnamedplus" vim.opt.compatible = false vim.opt.autowrite = true -vim.opt.foldmethod = "marker" +vim.opt.foldmethod = "syntax" -- auto cd to the current file's location vim.cmd('autocmd BufEnter * silent! lcd %:p:h') -- highlighting for other langs in markdown docs diff --git a/lua/plugins/10_ide.lua b/lua/plugins/10_ide.lua index a3ec510..261aed4 100644 --- a/lua/plugins/10_ide.lua +++ b/lua/plugins/10_ide.lua @@ -93,6 +93,8 @@ return { }, }, + { 'jlcrochet/vim-razor', lazy = false }, + -- -- Language Server -- @@ -169,6 +171,7 @@ return { "html", "jsonls", "lua_ls", + "omnisharp", "phpactor", "pyright", "sqls",