nvim: move all plugins configuration in own files
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
-- This must be loaded first
|
||||
vim.cmd("set termguicolors")
|
||||
|
||||
require 'plugins' -- Load plugins
|
||||
require 'plugins' -- Load plugins and their conf
|
||||
require 'settings' -- General settings
|
||||
require 'mappings' -- Keyboard mappings
|
||||
require 'lsp' -- Everything related to LSP
|
||||
|
||||
@@ -1,311 +0,0 @@
|
||||
local fn = vim.fn
|
||||
|
||||
-- This should auto install packer, if it is not installed on system
|
||||
-- Otherwise use:
|
||||
-- git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
|
||||
if fn.empty(fn.glob(install_path)) > 0 then
|
||||
packer_bootstrap = fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim',
|
||||
install_path })
|
||||
end
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Theme
|
||||
use({
|
||||
'sainnhe/everforest',
|
||||
config = function()
|
||||
vim.cmd("set background=light")
|
||||
vim.cmd("let g:everforest_background = 'hard'")
|
||||
vim.cmd("colorscheme everforest")
|
||||
end,
|
||||
})
|
||||
|
||||
-- Icons
|
||||
-- Load here, because otherwise icons won't show
|
||||
use({
|
||||
"kyazdani42/nvim-web-devicons",
|
||||
config = function()
|
||||
require 'nvim-web-devicons'.setup({
|
||||
default = true
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
||||
-- LuaLine
|
||||
use({
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = {
|
||||
"kyazdani42/nvim-web-devicons",
|
||||
"arkav/lualine-lsp-progress", -- Show lsp loading progress
|
||||
"SmiteshP/nvim-navic", -- Show breadcrumbs
|
||||
"neovim/nvim-lspconfig", -- for nvim-navic
|
||||
},
|
||||
config = function()
|
||||
-- startup breadcrumbs
|
||||
require 'nvim-navic'.setup({})
|
||||
|
||||
-- used as mode-module
|
||||
local mode_map = {
|
||||
['n'] = 'N',
|
||||
['v'] = 'V',
|
||||
['i'] = 'I',
|
||||
['V'] = 'VL',
|
||||
[''] = "VB",
|
||||
['s'] = "VB",
|
||||
['c'] = "C",
|
||||
}
|
||||
|
||||
-- actually load bar
|
||||
require('lualine').setup({
|
||||
options = {
|
||||
-- lualine comes with 'everforest' theme
|
||||
theme = 'everforest',
|
||||
},
|
||||
-- all sections from left to right
|
||||
sections = {
|
||||
lualine_a = {
|
||||
function()
|
||||
return mode_map[vim.api.nvim_get_mode().mode] or "__"
|
||||
end
|
||||
},
|
||||
lualine_b = {
|
||||
'branch',
|
||||
},
|
||||
lualine_c = {
|
||||
{
|
||||
'filename',
|
||||
path = 1,
|
||||
},
|
||||
require('nvim-navic').get_location
|
||||
},
|
||||
lualine_x = {
|
||||
'lsp_progress',
|
||||
{
|
||||
'diagnostics',
|
||||
diagnostics_color = {
|
||||
warn = { fg = "orange" },
|
||||
info = { fg = "#479bc7" },
|
||||
hint = { fg = "darkcyan" }
|
||||
},
|
||||
},
|
||||
},
|
||||
lualine_y = {
|
||||
'filetype',
|
||||
'encoding',
|
||||
'fileformat',
|
||||
-- show wordcount in md and tex file
|
||||
-- show precise count when selecting
|
||||
function()
|
||||
if vim.bo.filetype == "md" or vim.bo.filetype == "tex" then
|
||||
if vim.fn.wordcount().visual_words == 1 then
|
||||
return tostring(vim.fn.wordcount().visual_words) .. " word"
|
||||
elseif not (vim.fn.wordcount().visual_words == nil) then
|
||||
return tostring(vim.fn.wordcount().visual_words) .. " words"
|
||||
else
|
||||
return tostring(vim.fn.wordcount().words) .. " words"
|
||||
end
|
||||
else
|
||||
return ""
|
||||
end
|
||||
end
|
||||
},
|
||||
lualine_z = {
|
||||
'progress',
|
||||
'location',
|
||||
-- Show trailing whitespace
|
||||
function()
|
||||
local space = vim.fn.search([[\s\+$]], 'nwc')
|
||||
return space ~= 0 and "TW:" .. space or ""
|
||||
end
|
||||
},
|
||||
},
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
||||
-- Fuzzy Finder (Files etc)
|
||||
use({
|
||||
"nvim-telescope/telescope.nvim",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-telescope/telescope-symbols.nvim", -- Search for icons
|
||||
},
|
||||
config = function()
|
||||
require('telescope').setup({
|
||||
defaults = {
|
||||
prompt_prefix = " ",
|
||||
selection_caret = " ",
|
||||
entry_prefix = " ",
|
||||
sorting_strategy = "ascending",
|
||||
layout_strategy = "vertical",
|
||||
layout_config = {
|
||||
vertical = {
|
||||
prompt_position = "top",
|
||||
mirror = true,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
||||
-- Auto Indentation
|
||||
use({
|
||||
'nmac427/guess-indent.nvim',
|
||||
config = function() require('guess-indent').setup {} end,
|
||||
})
|
||||
|
||||
-- Autopairs
|
||||
use({
|
||||
"windwp/nvim-autopairs",
|
||||
config = function()
|
||||
require('nvim-autopairs').setup({})
|
||||
end,
|
||||
})
|
||||
|
||||
-- Treesitter (Update with `:TSUpdate`)
|
||||
use({
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
config = function()
|
||||
require('nvim-treesitter.configs').setup({
|
||||
ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"haskell",
|
||||
"json",
|
||||
"latex",
|
||||
"lua",
|
||||
"make",
|
||||
"python",
|
||||
"rust",
|
||||
"yaml",
|
||||
},
|
||||
auto_intall = true,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
})
|
||||
end,
|
||||
})
|
||||
|
||||
-- LSP (install with `:LSPInstall`, inspect with `:LSPInfo`)
|
||||
-- Config in lsp.lua
|
||||
use("neovim/nvim-lspconfig") -- Easy to manage LSP servers (attach etc)
|
||||
use("williamboman/nvim-lsp-installer") -- Easy to install LSP servers
|
||||
use("simrat39/rust-tools.nvim") -- Cooler LSP stuff for Rust
|
||||
|
||||
-- Snippets
|
||||
use({
|
||||
'hrsh7th/nvim-cmp',
|
||||
requires = {
|
||||
"L3MON4D3/LuaSnip", -- Snippet engine
|
||||
"hrsh7th/cmp-buffer", -- Source: buffer
|
||||
"hrsh7th/cmp-nvim-lsp", -- Source: LSP symbols
|
||||
"hrsh7th/cmp-path", -- Source: path
|
||||
"rafamadriz/friendly-snippets", -- Source: JSON style snippets for LuaSnip
|
||||
"saadparwaiz1/cmp_luasnip", -- Make LuaSnip work with cmp
|
||||
},
|
||||
config = function()
|
||||
local cmp = require 'cmp'
|
||||
cmp.setup({
|
||||
snippet = {
|
||||
expand = function(args) -- set a snippet engine
|
||||
require("luasnip").lsp_expand(args.body)
|
||||
end,
|
||||
},
|
||||
sources = {
|
||||
{ name = 'luasnip', keyword_length = 1, max_item_count = 3 },
|
||||
{ name = 'nvim_lsp', keyword_length = 1, max_item_count = 10 },
|
||||
{ name = 'buffer', keyword_length = 5, max_item_count = 3 },
|
||||
{ name = 'path' },
|
||||
},
|
||||
formatting = {
|
||||
-- Show icons in cmp box
|
||||
format = function(_, vim_item)
|
||||
local icons = require("icons").lspkind
|
||||
vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind)
|
||||
return vim_item
|
||||
end,
|
||||
},
|
||||
})
|
||||
-- Load friendly-snippets
|
||||
require('luasnip.loaders.from_vscode').lazy_load()
|
||||
-- Load own snippets
|
||||
require("luasnip.loaders.from_vscode").lazy_load({ paths = { "./snippets" } })
|
||||
end,
|
||||
})
|
||||
|
||||
-- which-key (Show key combos)
|
||||
use {
|
||||
"folke/which-key.nvim",
|
||||
config = function() require("which-key").setup {} end
|
||||
}
|
||||
|
||||
-- Align with `:Align <regex>`
|
||||
use 'RRethy/nvim-align'
|
||||
|
||||
-- Easily comment out stuff
|
||||
use({
|
||||
"numToStr/Comment.nvim",
|
||||
config = function() require('Comment').setup() end,
|
||||
})
|
||||
|
||||
-- Highlight TODOs
|
||||
use {
|
||||
"folke/todo-comments.nvim",
|
||||
requires = "nvim-lua/plenary.nvim",
|
||||
config = function() require("todo-comments").setup {} end
|
||||
}
|
||||
|
||||
-- git client
|
||||
use {
|
||||
'TimUntersberger/neogit',
|
||||
requires = 'nvim-lua/plenary.nvim',
|
||||
config = function()
|
||||
local neogit = require('neogit')
|
||||
neogit.setup {
|
||||
signs = {
|
||||
section = { "", "" },
|
||||
item = { "", "" },
|
||||
}
|
||||
}
|
||||
end,
|
||||
}
|
||||
|
||||
-- git signs at left side (+ blame line)
|
||||
use {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
config = function()
|
||||
require('gitsigns').setup()
|
||||
end
|
||||
}
|
||||
|
||||
-- show color codes inline
|
||||
use({
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
config = function()
|
||||
require 'colorizer'.setup()
|
||||
end
|
||||
})
|
||||
|
||||
-- file tree
|
||||
use {
|
||||
'kyazdani42/nvim-tree.lua',
|
||||
requires = {
|
||||
'kyazdani42/nvim-web-devicons', -- optional, for file icons
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup()
|
||||
end
|
||||
}
|
||||
|
||||
-- Automatically set up your configuration after cloning packer.nvim
|
||||
-- Put this at the end after all plugins
|
||||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
end
|
||||
end)
|
||||
1
files/nvim/.config/nvim/lua/plugins/Comment-conf.lua
Normal file
1
files/nvim/.config/nvim/lua/plugins/Comment-conf.lua
Normal file
@@ -0,0 +1 @@
|
||||
require('Comment').setup()
|
||||
3
files/nvim/.config/nvim/lua/plugins/everforest-conf.lua
Normal file
3
files/nvim/.config/nvim/lua/plugins/everforest-conf.lua
Normal file
@@ -0,0 +1,3 @@
|
||||
vim.cmd("set background=light")
|
||||
vim.cmd("let g:everforest_background = 'hard'")
|
||||
vim.cmd("colorscheme everforest")
|
||||
1
files/nvim/.config/nvim/lua/plugins/gitsigns-conf.lua
Normal file
1
files/nvim/.config/nvim/lua/plugins/gitsigns-conf.lua
Normal file
@@ -0,0 +1 @@
|
||||
require('gitsigns').setup()
|
||||
@@ -0,0 +1 @@
|
||||
require('guess-indent').setup {}
|
||||
152
files/nvim/.config/nvim/lua/plugins/init.lua
Normal file
152
files/nvim/.config/nvim/lua/plugins/init.lua
Normal file
@@ -0,0 +1,152 @@
|
||||
-- NOTE:
|
||||
-- Define all plugins in this file,
|
||||
-- but maintain config in <PLUGIN-NAME>-conf.lua
|
||||
|
||||
local fn = vim.fn
|
||||
|
||||
-- This should auto install packer, if it is not installed on system
|
||||
-- Otherwise use:
|
||||
-- git clone --depth 1 https://github.com/wbthomason/packer.nvim ~/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
|
||||
if fn.empty(fn.glob(install_path)) > 0 then
|
||||
packer_bootstrap = fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim',
|
||||
install_path })
|
||||
end
|
||||
|
||||
return require('packer').startup(function(use)
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
-- Theme
|
||||
use({
|
||||
'sainnhe/everforest',
|
||||
config = function() require('plugins.everforest-conf') end,
|
||||
})
|
||||
|
||||
-- Icons
|
||||
-- Load here, because otherwise icons won't show correctly
|
||||
use({
|
||||
"kyazdani42/nvim-web-devicons",
|
||||
config = function() require('plugins.nvim-web-devicons-conf') end,
|
||||
})
|
||||
|
||||
-- LuaLine
|
||||
use({
|
||||
"nvim-lualine/lualine.nvim",
|
||||
requires = {
|
||||
"kyazdani42/nvim-web-devicons", -- All icons in bar
|
||||
"arkav/lualine-lsp-progress", -- Show lsp loading progress
|
||||
"SmiteshP/nvim-navic", -- Show breadcrumbs (loaded in lualine-conf)
|
||||
"neovim/nvim-lspconfig", -- for nvim-navic (loaded later)
|
||||
},
|
||||
config = function() require('plugins.lualine-conf') end,
|
||||
})
|
||||
|
||||
-- Fuzzy Finder (Files etc)
|
||||
use({
|
||||
"nvim-telescope/telescope.nvim",
|
||||
requires = {
|
||||
"nvim-lua/plenary.nvim", -- General functions
|
||||
"nvim-telescope/telescope-symbols.nvim", -- Search for icons
|
||||
},
|
||||
config = function() require('plugins.telescope-conf') end,
|
||||
})
|
||||
|
||||
-- Auto Indentation
|
||||
use({
|
||||
'nmac427/guess-indent.nvim',
|
||||
config = function() require('plugins.guess-indent-conf') end,
|
||||
})
|
||||
|
||||
-- Autopairs
|
||||
use({
|
||||
"windwp/nvim-autopairs",
|
||||
config = function() require('plugins.nvim-autopairs-conf') end,
|
||||
})
|
||||
|
||||
-- Treesitter (Update with `:TSUpdate`)
|
||||
use({
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
config = function() require('plugins.nvim-treesitter-conf') end,
|
||||
})
|
||||
|
||||
-- LSP (install with `:LSPInstall`, inspect with `:LSPInfo`)
|
||||
use({
|
||||
"neovim/nvim-lspconfig", -- Easier to manage LSP servers
|
||||
requires = {
|
||||
"williamboman/nvim-lsp-installer", -- Easy to install LSP servers
|
||||
"simrat39/rust-tools.nvim" -- Cooler LSP stuff for Rust
|
||||
},
|
||||
config = function () require('plugins.nvim-lspconfig-conf') end,
|
||||
})
|
||||
|
||||
-- Snippets
|
||||
use({
|
||||
'hrsh7th/nvim-cmp',
|
||||
requires = {
|
||||
"L3MON4D3/LuaSnip", -- Snippet engine
|
||||
"hrsh7th/cmp-buffer", -- Source: buffer
|
||||
"hrsh7th/cmp-nvim-lsp", -- Source: LSP symbols
|
||||
"hrsh7th/cmp-path", -- Source: path
|
||||
"rafamadriz/friendly-snippets", -- Source: JSON style snippets for LuaSnip
|
||||
"saadparwaiz1/cmp_luasnip", -- Make LuaSnip work with cmp
|
||||
},
|
||||
config = function() require('plugins.nvim-cmp-conf') end,
|
||||
})
|
||||
|
||||
-- which-key (Show key combos)
|
||||
use {
|
||||
"folke/which-key.nvim",
|
||||
config = function() require('plugins.which-key-conf') end
|
||||
}
|
||||
|
||||
-- Align with `:Align <regex>`
|
||||
use 'RRethy/nvim-align'
|
||||
|
||||
-- Easily comment out stuff
|
||||
use({
|
||||
"numToStr/Comment.nvim",
|
||||
config = function() require('plugins.Comment-conf') end,
|
||||
})
|
||||
|
||||
-- Highlight TODOs
|
||||
use {
|
||||
"folke/todo-comments.nvim",
|
||||
requires = "nvim-lua/plenary.nvim",
|
||||
config = function() require('plugins.todo-comments-conf') end
|
||||
}
|
||||
|
||||
-- git client
|
||||
use {
|
||||
'TimUntersberger/neogit',
|
||||
requires = 'nvim-lua/plenary.nvim', -- General functions
|
||||
config = function() require('plugins.neogit-conf') end,
|
||||
}
|
||||
|
||||
-- git signs at left side (+ blame line)
|
||||
use {
|
||||
'lewis6991/gitsigns.nvim',
|
||||
config = function() require('plugins.gitsigns-conf') end
|
||||
}
|
||||
|
||||
-- show color codes inline
|
||||
use({
|
||||
"norcalli/nvim-colorizer.lua",
|
||||
config = function() require('plugins.nvim-colorizer-conf') end
|
||||
})
|
||||
|
||||
-- file tree
|
||||
use {
|
||||
'kyazdani42/nvim-tree.lua',
|
||||
requires = {
|
||||
'kyazdani42/nvim-web-devicons', -- optional, for file icons
|
||||
},
|
||||
config = function() require('plugins.nvim-tree-conf') end
|
||||
}
|
||||
|
||||
-- Automatically set up your configuration after cloning packer.nvim
|
||||
-- Put this at the end after all plugins
|
||||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
end
|
||||
end)
|
||||
79
files/nvim/.config/nvim/lua/plugins/lualine-conf.lua
Normal file
79
files/nvim/.config/nvim/lua/plugins/lualine-conf.lua
Normal file
@@ -0,0 +1,79 @@
|
||||
-- startup breadcrumbs
|
||||
require 'nvim-navic'.setup({})
|
||||
|
||||
-- used as mode-module
|
||||
local mode_map = {
|
||||
['n'] = 'N',
|
||||
['v'] = 'V',
|
||||
['i'] = 'I',
|
||||
['V'] = 'VL',
|
||||
[''] = "VB",
|
||||
['s'] = "VB",
|
||||
['c'] = "C",
|
||||
}
|
||||
|
||||
-- actually load bar
|
||||
require('lualine').setup({
|
||||
options = {
|
||||
-- lualine comes with 'everforest' theme
|
||||
theme = 'everforest',
|
||||
},
|
||||
-- all sections from left to right
|
||||
sections = {
|
||||
lualine_a = {
|
||||
function()
|
||||
return mode_map[vim.api.nvim_get_mode().mode] or "__"
|
||||
end
|
||||
},
|
||||
lualine_b = {
|
||||
'branch',
|
||||
},
|
||||
lualine_c = {
|
||||
{
|
||||
'filename',
|
||||
path = 1,
|
||||
},
|
||||
require('nvim-navic').get_location
|
||||
},
|
||||
lualine_x = {
|
||||
'lsp_progress',
|
||||
{
|
||||
'diagnostics',
|
||||
diagnostics_color = {
|
||||
warn = { fg = "orange" },
|
||||
info = { fg = "#479bc7" },
|
||||
hint = { fg = "darkcyan" }
|
||||
},
|
||||
},
|
||||
},
|
||||
lualine_y = {
|
||||
'filetype',
|
||||
'encoding',
|
||||
'fileformat',
|
||||
-- show wordcount in md and tex file
|
||||
-- show precise count when selecting
|
||||
function()
|
||||
if vim.bo.filetype == "md" or vim.bo.filetype == "tex" then
|
||||
if vim.fn.wordcount().visual_words == 1 then
|
||||
return tostring(vim.fn.wordcount().visual_words) .. " word"
|
||||
elseif not (vim.fn.wordcount().visual_words == nil) then
|
||||
return tostring(vim.fn.wordcount().visual_words) .. " words"
|
||||
else
|
||||
return tostring(vim.fn.wordcount().words) .. " words"
|
||||
end
|
||||
else
|
||||
return ""
|
||||
end
|
||||
end
|
||||
},
|
||||
lualine_z = {
|
||||
'progress',
|
||||
'location',
|
||||
-- Show trailing whitespace
|
||||
function()
|
||||
local space = vim.fn.search([[\s\+$]], 'nwc')
|
||||
return space ~= 0 and "TW:" .. space or ""
|
||||
end
|
||||
},
|
||||
},
|
||||
})
|
||||
7
files/nvim/.config/nvim/lua/plugins/neogit-conf.lua
Normal file
7
files/nvim/.config/nvim/lua/plugins/neogit-conf.lua
Normal file
@@ -0,0 +1,7 @@
|
||||
local neogit = require('neogit')
|
||||
neogit.setup {
|
||||
signs = {
|
||||
section = { "", "" },
|
||||
item = { "", "" },
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
require('nvim-autopairs').setup({})
|
||||
26
files/nvim/.config/nvim/lua/plugins/nvim-cmp-conf.lua
Normal file
26
files/nvim/.config/nvim/lua/plugins/nvim-cmp-conf.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
local cmp = require 'cmp'
|
||||
cmp.setup({
|
||||
snippet = {
|
||||
expand = function(args) -- set a snippet engine
|
||||
require("luasnip").lsp_expand(args.body)
|
||||
end,
|
||||
},
|
||||
sources = {
|
||||
{ name = 'luasnip', keyword_length = 1, max_item_count = 3 },
|
||||
{ name = 'nvim_lsp', keyword_length = 1, max_item_count = 10 },
|
||||
{ name = 'buffer', keyword_length = 5, max_item_count = 3 },
|
||||
{ name = 'path' },
|
||||
},
|
||||
formatting = {
|
||||
-- Show icons in cmp box
|
||||
format = function(_, vim_item)
|
||||
local icons = require("icons").lspkind
|
||||
vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind)
|
||||
return vim_item
|
||||
end,
|
||||
},
|
||||
})
|
||||
-- Load friendly-snippets
|
||||
require('luasnip.loaders.from_vscode').lazy_load()
|
||||
-- Load own snippets
|
||||
require("luasnip.loaders.from_vscode").lazy_load({ paths = { "./snippets" } })
|
||||
@@ -0,0 +1 @@
|
||||
require 'colorizer'.setup()
|
||||
1
files/nvim/.config/nvim/lua/plugins/nvim-tree-conf.lua
Normal file
1
files/nvim/.config/nvim/lua/plugins/nvim-tree-conf.lua
Normal file
@@ -0,0 +1 @@
|
||||
require("nvim-tree").setup()
|
||||
19
files/nvim/.config/nvim/lua/plugins/nvim-treesitter-conf.lua
Normal file
19
files/nvim/.config/nvim/lua/plugins/nvim-treesitter-conf.lua
Normal file
@@ -0,0 +1,19 @@
|
||||
require('nvim-treesitter.configs').setup({
|
||||
ensure_installed = { -- can also be manually installed with :TSInstall
|
||||
"bash",
|
||||
"c",
|
||||
"haskell",
|
||||
"json",
|
||||
"latex",
|
||||
"lua",
|
||||
"make",
|
||||
"python",
|
||||
"rust",
|
||||
"yaml",
|
||||
},
|
||||
auto_intall = true,
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1,3 @@
|
||||
require 'nvim-web-devicons'.setup({
|
||||
default = true
|
||||
})
|
||||
15
files/nvim/.config/nvim/lua/plugins/telescope-conf.lua
Normal file
15
files/nvim/.config/nvim/lua/plugins/telescope-conf.lua
Normal file
@@ -0,0 +1,15 @@
|
||||
require('telescope').setup({
|
||||
defaults = {
|
||||
prompt_prefix = " ",
|
||||
selection_caret = " ",
|
||||
entry_prefix = " ",
|
||||
sorting_strategy = "ascending",
|
||||
layout_strategy = "vertical",
|
||||
layout_config = {
|
||||
vertical = {
|
||||
prompt_position = "top",
|
||||
mirror = true,
|
||||
}
|
||||
}
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1 @@
|
||||
require("todo-comments").setup {}
|
||||
1
files/nvim/.config/nvim/lua/plugins/which-key-conf.lua
Normal file
1
files/nvim/.config/nvim/lua/plugins/which-key-conf.lua
Normal file
@@ -0,0 +1 @@
|
||||
require("which-key").setup {}
|
||||
Reference in New Issue
Block a user