-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lua
117 lines (102 loc) · 3.42 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
vim.cmd([[
" Vim UI settings
set laststatus=2
set nu
set mouse=a
set hlsearch
set ignorecase
set smartcase
set incsearch
set showmatch
set switchbuf=usetab,newtab
set clipboard+=unnamedplus
" Coding style
set expandtab
set shiftwidth=4
set tabstop=4
set autoindent
" Keybindings
:nnoremap <CR> :nohlsearch<CR>/<BS><CR>
inoremap <S-tab> <C-d>
inoremap <C-c> <ESC>
map <C-PageUp> :bprev<CR>
map <C-PageDown> :bnext<CR>
" Commands
:command WQ wq
:command Wq wq
:command W w
:command Q q
:command Untrail %s/\s\+$//ge
" Plugins
call plug#begin('~/.local/share/nvim/plugged')
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'edkolev/promptline.vim'
Plug 'tanvirtin/monokai.nvim'
Plug 'neovim/nvim-lspconfig'
call plug#end()
" Plugin settings
let g:airline_powerline_fonts = 1
let g:airline_theme = "powerlineish"
let g:airline#extensions#tabline#enabled = 1
let g:promptline_theme = 'airline'
let g:promptline_preset = {
\'a' : [ '$(hostname)' ],
\'b' : [ promptline#slices#user() ],
\'c' : [ promptline#slices#cwd(), promptline#slices#vcs_branch() ]}
" Syntax highlighting stuff
syntax on
colorscheme monokai
" Clear the background, use terminal bg
:hi Normal guibg=none ctermbg=none
:hi LineNr guibg=none ctermbg=none
:hi Folded guibg=none ctermbg=none
:hi NonText guibg=none ctermbg=none
:hi SpecialKey guibg=none ctermbg=none
:hi VertSplit guibg=none ctermbg=none
:hi SignColumn guibg=none ctermbg=none
:hi EndOfBuffer guibg=none ctermbg=none
]])
-- Setup language servers.
local lspconfig = require('lspconfig')
lspconfig.rust_analyzer.setup {
-- Server-specific settings. See `:help lspconfig-setup`
settings = {
['rust-analyzer'] = {},
},
}
-- Global mappings.
-- See `:help vim.diagnostic.*` for documentation on any of the below functions
vim.keymap.set('n', '<space>e', vim.diagnostic.open_float)
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
vim.keymap.set('n', '<space>q', vim.diagnostic.setloclist)
-- Use LspAttach autocommand to only map the following keys
-- after the language server attaches to the current buffer
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('UserLspConfig', {}),
callback = function(ev)
-- Enable completion triggered by <c-x><c-o>
vim.bo[ev.buf].omnifunc = 'v:lua.vim.lsp.omnifunc'
-- Buffer local mappings.
-- See `:help vim.lsp.*` for documentation on any of the below functions
local opts = { buffer = ev.buf }
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, opts)
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)
vim.keymap.set('n', '<space>wa', vim.lsp.buf.add_workspace_folder, opts)
vim.keymap.set('n', '<space>wr', vim.lsp.buf.remove_workspace_folder, opts)
vim.keymap.set('n', '<space>wl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end, opts)
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, opts)
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, opts)
vim.keymap.set({ 'n', 'v' }, '<space>ca', vim.lsp.buf.code_action, opts)
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
vim.keymap.set('n', '<space>f', function()
vim.lsp.buf.format { async = true }
end, opts)
end,
})