Skip to content

Latest commit

 

History

History
67 lines (54 loc) · 1.64 KB

File metadata and controls

67 lines (54 loc) · 1.64 KB

oxeye.nvim

Neovim plugin Top Languages Last commit Oxeye Banner

Installation

Lazy

{
  'krutt/oxeye.nvim',
  config = function()
    require('oxeye').setup()
  end,
  dependencies = {
    'neovim/nvim-lspconfig',
    'nvim-lua/plenary.nvim',
    'nvim-treesitter/nvim-treesitter'
  },
}

Packer

use {
  'krutt/oxeye.nvim',
  dependencies = {
    'neovim/nvim-lspconfig',
    'nvim-lua/plenary.nvim',
    'nvim-treesitter/nvim-treesitter'
  },
  setup = function()
    require('oxeye').setup()
  end,
}

Project structure

oxeye.nvim/
│
├── lua/
│   └── oxeye/
│       └── init.lua         # Initiate oxeye using lspconfig for lspconfig
│
├── plugin/
│   ├── build.lua            # Check and install LSP server if not existed
│   └── oxeye.lua            # Verify lua dependencies before setup
│
├── LICENSE                  # Details of MIT License
└── README.md                # Descriptions and roadmap

Acknowledgements

  1. อัญชัญ - Anchan typeface by Alisara Zilch

License

This project is licensed under the terms of the MIT license.