1
0
Fork 0

Initial nvim config.

This commit is contained in:
Arthur Khachaturov 2023-11-28 23:54:18 +03:00
parent e915531d83
commit c26d67450b
19 changed files with 279 additions and 0 deletions

View file

@ -0,0 +1 @@
return { "vim-airline/vim-airline" }

View file

@ -0,0 +1,8 @@
return {
"akinsho/bufferline.nvim",
config = {
options = {
buffer_close_icon = "",
}
}
}

View file

@ -0,0 +1,8 @@
return {
'numToStr/Comment.nvim',
opts = { },
lazy = false,
config = function()
require('Comment').setup()
end,
}

View file

@ -0,0 +1 @@
return { "nvim-tree/nvim-web-devicons" }

View file

@ -0,0 +1,8 @@
return {
'Wansmer/langmapper.nvim',
lazy = false,
priority = 1,
config = {
hack_keymap = true,
}
}

View file

@ -0,0 +1,5 @@
return {
"ethanholz/nvim-lastplace",
config = {}
}

View file

@ -0,0 +1 @@
return { "neovim/nvim-lspconfig" }

View file

@ -0,0 +1,10 @@
return {
"nvim-tree/nvim-tree.lua",
config = function()
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
require("nvim-tree").setup()
end,
}

View file

@ -0,0 +1,8 @@
return {
"joshdick/onedark.vim",
lazy = false,
config = function()
vim.cmd([[colorscheme onedark]])
end,
}

View file

@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function ()
local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = { "c", "cpp", "lua", "vim", "vimdoc", "query", "python", "javascript", "html" },
sync_install = false,
highlight = { enable = true },
indent = { enable = true },
})
end
}

View file

@ -0,0 +1,4 @@
return {
"wakatime/vim-wakatime",
lazy = false,
}