GithubHelp home page GithubHelp logo

clslaid / lean.nvim Goto Github PK

View Code? Open in Web Editor NEW

This project forked from julian/lean.nvim

0.0 0.0 0.0 1.15 MB

neovim support for the Lean theorem prover

License: MIT License

Shell 0.27% Scheme 1.04% Python 0.13% Lua 92.77% Makefile 0.33% Vim Script 5.45%

lean.nvim's Introduction

lean.nvim

neovim support for the Lean Theorem Prover.

Screen.Recording.2022-04-03.at.21.13.28.mov

Prerequisites

lean.nvim supports the latest stable neovim release (currently 0.8.x) as well as the latest nightly.

(This matches what neovim itself supports upstream, which often guides what plugins end up working with).

Installation

Install via your favorite plugin manager. E.g., with vim-plug via:

Plug 'Julian/lean.nvim'
Plug 'neovim/nvim-lspconfig'
Plug 'nvim-lua/plenary.nvim'

" Optional Dependencies:

Plug 'hrsh7th/nvim-cmp'        " For LSP completion
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/vim-vsnip'       " For snippets
Plug 'andrewradev/switch.vim'  " For Lean switch support
Plug 'tomtom/tcomment_vim'     " For commenting motions

Both Lean 3 and Lean 4 are supported.

lean.nvim already includes syntax highlighting and Lean filetype support, so installing the lean.vim (i.e. non-neovim) plugin is not required or recommended.

Lean 3

For Lean 3 support, in addition to the instructions above, you should install lean-language-server, which can be done via e.g.:

$ npm install -g lean-language-server

Given that Lean 3's language server is separate from Lean itself, also ensure you've installed Lean 3 itself.

Lean 4

For Lean 4 support, a recent Lean 4 nightly build is recommended (one at least from late 2022).

Features

  • Abbreviation (unicode character) insertion (in insert mode & the command window accessible via q/)
  • An infoview which can show persistent goal, term & tactic state, as well as interactive widget support (which should function for most widgets renderable as text)
  • Hover (preview) commands:
    • :LeanGoal for showing goal state in a preview window
    • :LeanTermGoal for showing term-mode type information in a preview window
  • switch.vim base definitions for Lean
  • Simple snippets (in VSCode-compatible format, usable with e.g. vim-vsnip)
  • Lean library search path access via lean.current_search_path(), suitable for use with e.g. telescope.nvim for live grepping. See the wiki for a sample configuration.
  • Simple implementations of some editing helpers, such as try this suggestion replacement

Configuration & Usage

The short version -- after following the installation instructions above, add the below to ~/.config/nvim/plugin/lean.lua or an equivalent:

require('lean').setup{
  abbreviations = { builtin = true },
  lsp = { on_attach = on_attach },
  lsp3 = { on_attach = on_attach },
  mappings = true,
}

where on_attach should be your preferred LSP attach handler.

If you do not already have a preferred setup which includes LSP key mappings and (auto)completion, you may find the fuller example here in the wiki helpful. More detail on the full list of supported configuration options can be found below.

Semantic Highlighting

Lean 4 supports semantic highlighting, in which the Lean server itself will signal how to highlight terms and symbols within the editor using information available to it.

Semantic highlighting support in neovim is still being merged in upstream and is likely to be available in version 0.9 (or shortly thereafter), at which point this functionality will be usable in neovim.

If you're impatient or eager however, you can enable the functionality immediately by installing a plugin for semantic highlighting such as this one.

Note that if you do so, you still will want to map the semantic highlighting groups to your color scheme appropriately. For a sample setup, see the wiki.

Mappings

If you've set mappings = true in your configuration (or have called lean.use_suggested_mappings() explicitly), a number of keys will be mapped either within Lean source files or within Infoview windows:

In Lean Files

The key binding <LocalLeader> below refers to a configurable prefix key within vim (and neovim). You can check what this key is set to within neovim by running the command :echo maplocalleader. An error like E121: Undefined variable: maplocalleader indicates that it may not be set to any key. This can be configured by putting a line in your ~/.config/nvim/init.vim of the form let maplocalleader = "\<Space>" (in this example, mapping <LocalLeader> to <Space>).

Key Function
<LocalLeader>i toggle the infoview open or closed
<LocalLeader>p pause the current infoview
<LocalLeader>x place an infoview pin
<LocalLeader>c clear all current infoview pins
<LocalLeader>dx place an infoview diff pin
<LocalLeader>dc clear current infoview diff pin
<LocalLeader>dd toggle auto diff pin mode
<LocalLeader>dt toggle auto diff pin mode without clearing diff pin
<LocalLeader>s insert a sorry for each open goal
<LocalLeader>t replace a "try this:" suggestion under the cursor
<LocalLeader><Tab> jump into the infoview window associated with the current lean file
<LocalLeader>\\ show what abbreviation produces the symbol under the cursor

Note

See :help <LocalLeader> if you haven't previously interacted with the local leader key. Some vim users remap this key to make it easier to reach, so you may want to consider what key that means for your own keyboard layout. My (Julian's) <Leader> is set to <Space>, and my <LocalLeader> to <Space><Space>, which may be a good choice for you if you have no other preference.

In Infoview Windows

Key Function
<CR> click a widget or interactive area of the infoview
K click a widget or interactive area of the infoview
<Tab> jump into a tooltip (from a widget click)
<Shift-Tab> jump out of a tooltip and back to its parent
<Esc> clear all open tooltips
J jump into a tooltip (from a widget click)
C clear all open tooltips
I mouse-enter what is under the cursor
i mouse-leave what is under the cursor
gd go-to-definition of what is under the cursor
gD go-to-declaration of what is under the cursor
gy go-to-type of what is under the cursor
<LocalLeader><Tab> jump to the lean file associated with the current infoview window

Full Configuration & Settings Information

require('lean').setup{
  -- Enable the Lean language server(s)?
  --
  -- false to disable, otherwise should be a table of options to pass to
  --  `leanls` and/or `lean3ls`.
  --
  -- See https://github.com/neovim/nvim-lspconfig/blob/master/doc/server_configurations.md#leanls for details.

  -- Lean 4  (on_attach is as above, your LSP handler)
  lsp = { on_attach = on_attach },

  -- Lean 3  (on_attach is as above, your LSP handler)
  lsp3 = { on_attach = on_attach },

  -- mouse_events = true will simulate mouse events in the Lean 3 infoview, this is buggy at the moment
  -- so you can use the I/i keybindings to manually trigger these
  lean3 = { mouse_events = false },

  ft = {
    -- What filetype should be associated with standalone Lean files?
    -- Can be set to "lean3" if you prefer that default.
    -- Having a leanpkg.toml or lean-toolchain file should always mean
    -- autodetection works correctly.
    default = "lean",

    -- A list of patterns which will be used to protect any matching
    -- Lean file paths from being accidentally modified (by marking the
    -- buffer as `nomodifiable`).
    nomodifiable = {
        -- by default, this list includes the Lean standard libraries,
        -- as well as files within dependency directories (e.g. `_target`)
        -- Set this to an empty table to disable.
    }
  },

  -- Abbreviation support
  abbreviations = {
    -- Enable expanding of unicode abbreviations?
    enable = true,
    -- additional abbreviations:
    extra = {
      -- Add a \wknight abbreviation to insert ♘
      --
      -- Note that the backslash is implied, and that you of
      -- course may also use a snippet engine directly to do
      -- this if so desired.
      wknight = '',
    },
    -- Change if you don't like the backslash
    -- (comma is a popular choice on French keyboards)
    leader = '\\',
  },

  -- Enable suggested mappings?
  --
  -- false by default, true to enable
  mappings = false,

  -- Infoview support
  infoview = {
    -- Automatically open an infoview on entering a Lean buffer?
    -- Should be a function that will be called anytime a new Lean file
    -- is opened. Return true to open an infoview, otherwise false.
    -- Setting this to `true` is the same as `function() return true end`,
    -- i.e. autoopen for any Lean file, or setting it to `false` is the
    -- same as `function() return false end`, i.e. never autoopen.
    autoopen = true,

    -- Set infoview windows' starting dimensions.
    -- Windows are opened horizontally or vertically depending on spacing.
    width = 50,
    height = 20,

    -- Put the infoview on the top or bottom when horizontal?
    -- top | bottom
    horizontal_position = "bottom",

    -- Always open the infoview window in a separate tabpage.
    -- Might be useful if you are using a screen reader and don't want too
    -- many dynamic updates in the terminal at the same time.
    -- Note that `height` and `width` will be ignored in this case.
    separate_tab = false,

    -- Show indicators for pin locations when entering an infoview window?
    -- always | never | auto (= only when there are multiple pins)
    indicators = "auto",
  },

  -- Progress bar support
  progress_bars = {
    -- Enable the progress bars?
    enable = true,
    -- Use a different priority for the signs
    priority = 10,
  },

  -- Redirect Lean's stderr messages somehwere (to a buffer by default)
  stderr = {
    enable = true,
    -- height of the window
    height = 5,
    -- a callback which will be called with (multi-line) stderr output
    -- e.g., use:
    --   on_lines = function(lines) vim.notify(lines) end
    -- if you want to redirect stderr to `vim.notify`.
    -- The default implementation will redirect to a dedicated stderr
    -- window.
    on_lines = nil,
  },
}

Other Plugins

Particularly if you're also a VSCode user, there may be other plugins you're interested in. Below is a (hopelessly incomplete) list of a few:

Contributing

Contributions are most welcome. Feel free to send pull requests for anything you'd like to see, or open an issue if you'd like to discuss.

Running the tests can be done via the Makefile:

$ make test

which will execute against a minimal vimrc isolated from your own setup.

$ TEST_FILE=lua/tests/foo_spec.lua make test

can be used to run just one specific test file, which can be faster.

Some linting and style checking is done via pre-commit, which once installed (via the linked instructions) is run via:

$ make lint

or on each commit automatically if you have run pre-commit install in your repository checkout.

You can also use

$ make nvim SETUP_TABLE='{ lsp3 = { enable = true }, mappings = true }'

to get a normal running neovim (again isolated from your own configuration), where SETUP_TABLE is a (Lua) table like one would pass to lean.setup.

lean.nvim's People

Contributors

julian avatar rish987 avatar gebner avatar 4e554c4c avatar alexdikelsky avatar langfield avatar pre-commit-ci[bot] avatar jcommelin avatar ram02z avatar kovach avatar williamboman avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.