-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.lua
More file actions
164 lines (154 loc) · 4.1 KB
/
init.lua
File metadata and controls
164 lines (154 loc) · 4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
vim.g.mapleader = ","
require("lazy").setup({
'vim-ruby/vim-ruby',
'fatih/vim-go',
'rust-lang/rust.vim',
'pangloss/vim-javascript',
'mxw/vim-jsx',
'kchmck/vim-coffee-script',
'pearofducks/ansible-vim',
'hashivim/vim-terraform',
'glench/vim-jinja2-syntax',
'tpope/vim-rake',
'tpope/vim-rails',
'tpope/vim-bundler',
'tpope/vim-cucumber',
'tpope/vim-haml',
'tpope/vim-repeat',
'tpope/vim-surround',
--'tpope/vim-endwise',
'tpope/vim-fugitive',
'tpope/vim-projectionist',
--'tpope/vim-dispatch',
'scrooloose/nerdcommenter',
--'coderifous/textobj-word-column.vim',
--'sjl/gundo.vim',
--'ervandew/supertab',
'junegunn/fzf',
'vim-airline/vim-airline',
'vim-airline/vim-airline-themes',
--'mileszs/ack.vim',
'jlanzarotta/bufexplorer',
--'scrooloose/nerdtree',
'kien/ctrlp.vim',
'altercation/vim-colors-solarized',
'arcticicestudio/nord-vim',
--'ajmwagar/vim-deus',
'drewtempelmeyer/palenight.vim',
'joshdick/onedark.vim',
'KeitaNakamura/neodark.vim',
'rakr/vim-one',
'morhetz/gruvbox',
'neovim/nvim-lspconfig',
'hrsh7th/nvim-cmp',
'hrsh7th/cmp-nvim-lsp',
'hrsh7th/cmp-buffer',
'hrsh7th/cmp-path',
'hrsh7th/cmp-cmdline',
'hrsh7th/vim-vsnip',
'hrsh7th/cmp-vsnip',
'sheerun/vim-polyglot',
{
"folke/trouble.nvim",
opts = {}, -- for default options, refer to the configuration section for custom setup.
cmd = "Trouble",
keys = {
{
"<leader>xx",
"<cmd>Trouble diagnostics toggle<cr>",
desc = "Diagnostics (Trouble)",
},
{
"<leader>xX",
"<cmd>Trouble diagnostics toggle filter.buf=0<cr>",
desc = "Buffer Diagnostics (Trouble)",
},
{
"<leader>cs",
"<cmd>Trouble symbols toggle focus=false<cr>",
desc = "Symbols (Trouble)",
},
{
"<leader>cl",
"<cmd>Trouble lsp toggle focus=false win.position=right<cr>",
desc = "LSP Definitions / references / ... (Trouble)",
},
{
"<leader>xL",
"<cmd>Trouble loclist toggle<cr>",
desc = "Location List (Trouble)",
},
{
"<leader>xQ",
"<cmd>Trouble qflist toggle<cr>",
desc = "Quickfix List (Trouble)",
},
},
}
})
local cmp = require'cmp'
-- helper functions
local has_words_before = function()
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
end
local feedkey = function(key, mode)
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, true, true), mode, true)
end
cmp.setup({
snippet = {
expand = function(args)
-- setting up snippet engine
-- this is for vsnip, if you're using other
-- snippet engine, please refer to the `nvim-cmp` guide
vim.fn["vsnip#anonymous"](args.body)
end,
},
mapping = {
['<CR>'] = cmp.mapping.confirm({ select = true }),
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif vim.fn["vsnip#available"](1) == 1 then
feedkey("<Plug>(vsnip-expand-or-jump)", "")
elseif has_words_before() then
cmp.complete()
else
fallback()
end
end, { "i", "s" }),
["<S-Tab>"] = cmp.mapping(function()
if cmp.visible() then
cmp.select_prev_item()
elseif vim.fn["vsnip#jumpable"](-1) == 1 then
feedkey("<Plug>(vsnip-jump-prev)", "")
end
end, { "i", "s" }),
},
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
{ name = 'vsnip' }, -- For vsnip users.
{ name = 'buffer' }
})
})
if vim.fn.executable('rg') == 1 then
vim.o.grepprg = 'rg --vimgrep'
end
if vim.fn.executable('./bin/ruby-lsp') == 1 then
require'lspconfig'.ruby_lsp.setup{
cmd = { "./bin/ruby-lsp" };
}
end
vim.cmd('source ~/.vimrc')