Skip to content
View PatOConnor43's full-sized avatar
πŸ€”
Working on Updog
πŸ€”
Working on Updog

Sponsoring

@hrsh7th
@neovim
@ccgauche
@jyn514
Block or Report

Block or report PatOConnor43

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
PatOConnor43/README.md

Pinned

  1. A small gist to show a dartls setup ... A small gist to show a dartls setup function to allow all the codeactions. These can be shown with `:lua vim.lsp.buf.code_action()`
    1
    local dart_capabilities = vim.lsp.protocol.make_client_capabilities()
    2
    dart_capabilities.textDocument.codeAction = {
    3
      dynamicRegistration = false;
    4
          codeActionLiteralSupport = {
    5
              codeActionKind = {
  2. This is a minimal example configurat... This is a minimal example configuration which should allow lua scripts to resolve lua modules that are loaded as a result of packer.nvim. `/` is not allowed as a filename in gist so `-`s are used in their place.
    1
    " This was taken from 
    2
    " https://github.com/tjdevries/config_manager/blob/master/xdg_config/nvim/after/plugin/_load_lua.vim
    3
    
    
    4
    let s:load_dir = expand('<sfile>:p:h:h:h')
    5
    exec printf('luafile %s/lua/init.lua', s:load_dir)
  3. This is a small coc-nvim plugin to w... This is a small coc-nvim plugin to wrap the Java language server in a Lombok agent to allow completion for Lombok models. Place this file in `.config/nvim/coc-extensions/` with a copy of lombok.jar as well.
    1
    const { commands, workspace, ConfigurationTarget, extensions} = require('coc.nvim')
    2
    
    
    3
    exports.activate = async function(context) {
    4
        await setLombokToVSCode(context);
    5
    }