Adding nvim configuration to repo.

master
Tomasz Półgrabia 2025-02-01 12:30:30 +01:00
parent c6572f1df5
commit 0ad0eb46c7
4 changed files with 63 additions and 0 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "scripts/vim/bundles/vim-plug"] [submodule "scripts/vim/bundles/vim-plug"]
path = scripts/vim/bundles/vim-plug path = scripts/vim/bundles/vim-plug
url = https://github.com/junegunn/vim-plug url = https://github.com/junegunn/vim-plug
[submodule "scripts/nvim/bundles/vim-plug"]
path = scripts/nvim/bundles/vim-plug
url = https://github.com/junegunn/vim-plug.git

@ -0,0 +1 @@
Subproject commit d80f495fabff8446972b8695ba251ca636a047b0

56
scripts/nvim/init.lua Normal file
View File

@ -0,0 +1,56 @@
local o = vim.opt
o.compatible = false
o.number = true
o.cmdheight = 2
o.tabstop = 2
o.shiftwidth = 2
o.expandtab = true
vim.cmd('source ~/.config/nvim/bundles/vim-plug/plug.vim')
local Plug = vim.fn['plug#']
vim.call('plug#begin')
Plug 'prabirshrestha/vim-lsp'
Plug 'mattn/vim-lsp-settings'
Plug 'williamboman/mason.nvim'
Plug 'mfussenegger/nvim-jdtls'
-- Plug('neoclide/coc.nvim', {branch = 'release'})
vim.call('plug#end')
require('mason').setup()
-- local executable = vim.fn[':
vim.api.nvim_create_autocmd({'LspAttach'}, {
pattern = { '*.c', '*.cpp' },
callback = function()
-- vim.api.nvim_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc')
if (vim.fn['executable']('clangd')) then
vim.lsp.start({
name = 'clangd',
cmd = {'clangd'}
})
end
o.omnifunc = vim.lsp.omnifunc
end
})
vim.api.nvim_create_autocmd({'FileType'}, {
pattern = { 'java' },
callback = function()
local config = {
cmd = { vim.fn.expand('~/.local/share/nvim/mason/bin/jdtls') },
root_dir = vim.fs.dirname(vim.fs.find({ 'gradlew', '.git', 'mvnw' }, { upward = true })[1]),
}
require('jdtls').start_or_attach(config)
o.omnifunc = 'v:lua.vim.lsp.omnifunc'
end
})

View File

@ -0,0 +1,3 @@
local foo = 1
print(string.format('Hello foo: %d', foo))