Skip to content

Commit

Permalink
add readme files
Browse files Browse the repository at this point in the history
  • Loading branch information
jayli committed Jan 1, 2024
1 parent 6fe1854 commit 94129b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ There are many excellent vim auto-completion plugins such as [nvim-cmp](https://

Vim-easycomplete is a fast and minimalism style completion plugin for vim/nvim. The goal is to work everywhere out of the box. It requires pure VimScript. It's also super simple to configure. For example, You do not have to install Node and a bunch of Node modules unless you write node code.

<img src="https://gw.alicdn.com/imgextra/i2/O1CN01OA1VV41QHbd7Y2WKu_!!6000000001951-1-tps-1209-693.gif" width=650 />
https://github.com/jayli/vim-easycomplete/assets/188244/5fdef6cb-ef1d-4428-960e-d9802cbc2a84

It contains these features:

Expand Down
1 change: 1 addition & 0 deletions custom-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ vim.g.easycomplete_kind_icons = {
var = "",
alias = "",
parameter = "󰏗",
property = "󰙅"
}

-- Custom pum format. Only avilable with `g:easycomplete_nerd_font == 1` in nvim
Expand Down
2 changes: 1 addition & 1 deletion plugin/easycomplete.vim
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ if g:easycomplete_nerd_font == 1
\ 'event': get(kind_icons, "event", ''), 'var': get(kind_icons, "var", ""),
\ 'const': get(kind_icons, "const", ""), 'alias': get(kind_icons, 'alias', ""),
\ 'let': get(kind_icons, "let", ""), 'parameter': get(kind_icons, 'parameter', "󰏗"),
\ 'operator': get(kind_icons, 'operator', "󱧕"),
\ 'operator': get(kind_icons, 'operator', "󱧕"), 'property': get(kind_icons, 'property', "󰙅"),
\ 'r':'', 't':'',
\ 'f':'f', 'c':'',
\ 'u':'𝘶', 'e':'𝘦',
Expand Down

0 comments on commit 94129b6

Please sign in to comment.