-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
279 lines (249 loc) · 7.8 KB
/
init.lua
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
-- Editor Settings
vim.opt.autoindent = true
vim.opt.autoread = true
vim.opt.mouse = 'a'
vim.opt.number = true
vim.opt.cursorline = true
vim.opt.expandtab = true
vim.opt.clipboard = 'unnamed'
vim.opt.laststatus = 2
vim.opt.ruler = true
vim.opt.showcmd = true
vim.opt.smartindent = true
vim.opt.smarttab = true
vim.opt.vb = true
vim.opt.colorcolumn = '93'
vim.opt.foldmethod = 'indent'
vim.opt.foldlevelstart = 4
-- Searching
vim.opt.hlsearch = true
vim.opt.incsearch = true
vim.opt.ignorecase = true
vim.opt.smartcase = true
-- Code Tabbing
vim.opt.tabstop = 2
vim.opt.shiftwidth = 2
-- Persistent Undo
-- TODO: the fix for this is below, commented out until then.
-- https://github.com/neovim/neovim/issues/15720
-- vim.opt.undodir = '~/.config/nvim/undodir'
-- vim.opt.undofile = true
-- Better Backups
-- vim.opt.backupdir = '~/.config/nvim/sessions'
-- vim.opt.dir = '~/.config/nvim/sessions'
vim.keymap.set({''}, '<CR>', ':noh<CR><CR>') -- clears highlighted search results
-- Disable netrw at the suggestion of nvim-tree
-- TODO: why?
vim.g.loaded = 1
vim.g.loaded_netrwPlugin = 1
-- Package Management
-- Install Packer
local install_path = vim.fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
local install_plugins = false
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
print('Installing packer...')
local packer_url = 'https://github.com/wbthomason/packer.nvim'
vim.fn.system({'git', 'clone', '--depth', '1', packer_url, install_path})
print('Done.')
vim.cmd('packadd packer.nvim')
install_plugins = true
end
-- Install Plugins
require('packer').startup(function(use)
-- Package manager
use 'wbthomason/packer.nvim'
-- Theme inspired by Atom
use 'joshdick/onedark.vim'
-- Status Line
use {
'nvim-lualine/lualine.nvim',
requires = { 'kyazdani42/nvim-web-devicons', opt = true }
}
-- File Tree
use {
'kyazdani42/nvim-tree.lua',
requires = {
'kyazdani42/nvim-web-devicons', -- optional, for file icons
},
tag = 'nightly' -- optional, updated every week. (see issue #1193)
}
-- File Finder
use {
'nvim-telescope/telescope.nvim', tag = '0.1.0',
requires = {
{'nvim-lua/plenary.nvim'},
{'nvim-telescope/telescope-fzf-native.nvim', run = 'make' }
}
}
-- Treesitter
use {
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate'
}
-- Spotify Controller
use {
'KadoBOT/nvim-spotify',
requires = 'nvim-telescope/telescope.nvim',
config = function()
local spotify = require'nvim-spotify'
spotify.setup {
-- default opts
status = {
update_interval = 10000, -- the interval (ms) to check for what's currently playing
format = '%s %t by %a' -- spotify-tui --format argument
}
}
end,
run = 'make'
}
-- Simple Packages
use 'junegunn/vim-easy-align'
use 'lukas-reineke/indent-blankline.nvim'
use 'tpope/vim-commentary'
use 'JoosepAlviste/nvim-ts-context-commentstring'
use 'tpope/vim-fugitive'
use 'pechorin/any-jump.vim'
use 'nvim-treesitter/nvim-treesitter-context'
use 'neovim/nvim-lspconfig'
use 'hrsh7th/cmp-nvim-lsp'
use 'hrsh7th/cmp-buffer'
use 'hrsh7th/cmp-path'
use 'hrsh7th/cmp-cmdline'
use 'hrsh7th/nvim-cmp'
use 'hrsh7th/cmp-vsnip'
use 'hrsh7th/vim-vsnip'
use 'tveskag/nvim-blame-line'
if install_plugins then
require('packer').sync()
end
end)
if install_plugins then
return
end
-- Easily Resync Configuration
vim.api.nvim_create_user_command('ReloadConfig', 'source $MYVIMRC', {})
-- Configure Installed Packages
vim.opt.termguicolors = true
vim.cmd('colorscheme onedark')
local status = require'nvim-spotify'.status
status:start()
require('lualine').setup({
options = {
icons_enabled = false,
section_separators = '',
component_separators = ''
},
sections = {
lualine_x = {
status.listen
}
}
})
require('nvim-tree').setup()
vim.keymap.set({''}, '<leader>d', ':NvimTreeToggle<CR>') -- toggle the file tree view
require('telescope').setup()
vim.keymap.set({''}, ';', ':Telescope find_files<CR>')
vim.keymap.set({''}, ',', ':Telescope live_grep<CR>')
vim.keymap.set({''}, '<leader>b', ':Telescope buffers<CR>')
require('telescope').load_extension('fzf')
vim.keymap.set({'v'}, '<Enter>', ':EasyAlign<Enter>', { silent = true })
local highlight = {
"RainbowRed",
"RainbowYellow",
"RainbowBlue",
"RainbowOrange",
"RainbowGreen",
"RainbowViolet",
"RainbowCyan",
}
local hooks = require "ibl.hooks"
-- create the highlight groups in the highlight setup hook, so they are reset
-- every time the colorscheme changes
hooks.register(hooks.type.HIGHLIGHT_SETUP, function()
vim.api.nvim_set_hl(0, "RainbowRed", { fg = "#E06C75" })
vim.api.nvim_set_hl(0, "RainbowYellow", { fg = "#E5C07B" })
vim.api.nvim_set_hl(0, "RainbowBlue", { fg = "#61AFEF" })
vim.api.nvim_set_hl(0, "RainbowOrange", { fg = "#D19A66" })
vim.api.nvim_set_hl(0, "RainbowGreen", { fg = "#98C379" })
vim.api.nvim_set_hl(0, "RainbowViolet", { fg = "#C678DD" })
vim.api.nvim_set_hl(0, "RainbowCyan", { fg = "#56B6C2" })
end)
require("ibl").setup { indent = { highlight = highlight } }
vim.keymap.set({''}, 'ig', ':IBLToggle<CR>')
require('nvim-treesitter.configs').setup({
ensure_installed = { "ruby", "javascript", "typescript" },
highlight = {
enable = true
}
})
require('nvim-treesitter.configs').setup {}
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
local cmp = require'cmp'
cmp.setup({
snippet = {
expand = function(args)
vim.fn["vsnip#anonymous"](args.body)
end,
},
mapping = {
['<C-b>'] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }),
['<C-f>'] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }),
['<C-Space>'] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
['<C-y>'] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
['<C-e>'] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
-- Accept currently selected item. If none selected, `select` first item.
-- Set `select` to `false` to only confirm explicitly selected items.
['<CR>'] = cmp.mapping.confirm({ select = false }),
["<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() -- The fallback function sends a already mapped key. In this case, it's probably `<Tab>`.
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' },
})
})
-- Use buffer source for `/` (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline('/', {
sources = {
{ name = 'buffer' }
}
})
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
cmp.setup.cmdline(':', {
sources = cmp.config.sources({
{ name = 'path' }
}, {
{ name = 'cmdline' }
})
})
-- Setup lspconfig.
local capabilities = require('cmp_nvim_lsp').default_capabilities(vim.lsp.protocol.make_client_capabilities())
-- Toggle git blame at the end of the line
vim.keymap.set({''}, 'gb', ':ToggleBlameLine<CR>')