vim.opt.relativenumber = true vim.keymap.set('n', 'pv', 'Ex') vim.opt.ignorecase = true vim.opt.smartcase = true vim.opt.smartindent = true vim.opt.autoindent = true vim.opt.expandtab = true vim.opt.tabstop = 2 vim.opt.shiftwidth = 2 vim.keymap.set('n', 'y', '"+y') vim.keymap.set('n', 'gs', ':Git') vim.keymap.set('n', 'gp', ':Git pull') vim.keymap.set('n', 'gpsh', ':Git push') vim.keymap.set('n', 'gh', 'diffget //2') vim.keymap.set('n', 'gl', 'diffget //3') -- LSP testing local client_id = vim.lsp.start_client { name = 'LSP Playground', cmd = { '/home/gilad/dev/lsp-playground/main' }, on_attach = function() end, } if not client_id then vim.notify "hey, you didn't do the client thing good" return end vim.api.nvim_create_autocmd('FileType', { pattern = 'markdown', callback = function() local success = vim.lsp.buf_attach_client(0, client_id) if not success then vim.notify 'failed to attach client' end end, })