https://github.com/rajibahmed/dotfiles
My editor configs
https://github.com/rajibahmed/dotfiles
dotfiles neovim vim viml
Last synced: over 1 year ago
JSON representation
My editor configs
- Host: GitHub
- URL: https://github.com/rajibahmed/dotfiles
- Owner: rajibahmed
- Created: 2016-09-07T09:12:14.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-11-05T08:46:30.000Z (over 1 year ago)
- Last Synced: 2025-03-08T01:02:05.520Z (over 1 year ago)
- Topics: dotfiles, neovim, vim, viml
- Language: Lua
- Homepage:
- Size: 246 KB
- Stars: 0
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My Zsh and Vim configs
======================
Installation
```sh
cd ~ && git clone https://github.com/rajibahmed/dotfiles.git
sh dotfiles/setup_machine.sh
```
LSP Mapping
============================
```
'gD', 'lua vim.lsp.buf.declaration()', opts)
'gd', 'lua vim.lsp.buf.definition()', opts)
'K', 'lua vim.lsp.buf.hover()', opts)
'gi', 'lua vim.lsp.buf.implementation()', opts)
'', 'lua vim.lsp.buf.signature_help()', opts)
'wa', 'lua vim.lsp.buf.add_workspace_folder()', opts)
'wr', 'lua vim.lsp.buf.remove_workspace_folder()', opts)
'wl', 'lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))', opts)
'D', 'lua vim.lsp.buf.type_definition()', opts)
'rn', 'lua vim.lsp.buf.rename()', opts)
'ca', 'lua vim.lsp.buf.code_action()', opts)
'gr', 'lua vim.lsp.buf.references()', opts)
'e', 'lua vim.lsp.diagnostic.show_line_diagnostics()', opts)
'[d', 'lua vim.lsp.diagnostic.goto_prev()', opts)
']d', 'lua vim.lsp.diagnostic.goto_next()', opts)
'q', 'lua vim.lsp.diagnostic.set_loclist()', opts)
'f', 'lua vim.lsp.buf.formatting()', opts)
```