Compare commits
11 Commits
dd746988b8
...
server-ssh
| Author | SHA1 | Date | |
|---|---|---|---|
| 7356570c16 | |||
| bea26f54a4 | |||
| 977370f402 | |||
| b1d2ac048e | |||
| e2ae2ecc24 | |||
| 8289645293 | |||
| 25c4bdf348 | |||
| 9a55a49962 | |||
| 89733d8686 | |||
| 557bf04368 | |||
| a7df9ae715 |
8
init.lua
8
init.lua
@ -2,17 +2,13 @@ require('settings')
|
|||||||
require('keymaps')
|
require('keymaps')
|
||||||
require('colors')
|
require('colors')
|
||||||
require('plugins/plugins')
|
require('plugins/plugins')
|
||||||
require('plugins/nvim-tree')
|
|
||||||
require('plugins/indent-blankline')
|
|
||||||
require('plugins/feline')
|
require('plugins/feline')
|
||||||
require('plugins/headlines')
|
|
||||||
require('plugins/nvim-cmp')
|
|
||||||
require('plugins/nvim-lspconfig')
|
require('plugins/nvim-lspconfig')
|
||||||
require('plugins/nvim-treesitter')
|
require('plugins/nvim-treesitter')
|
||||||
require('plugins/alpha-nvim')
|
require('plugins/telescope')
|
||||||
require('plugins/symbols-outline')
|
require('plugins/symbols-outline')
|
||||||
require('plugins/mason-lspconfig')
|
require('plugins/mason-lspconfig')
|
||||||
require('plugins/snippets')
|
require('plugins/snippets')
|
||||||
require('plugins/neoscroll')
|
require('plugins/neoscroll')
|
||||||
require('plugins/marks')
|
|
||||||
require('plugins/null-ls')
|
require('plugins/null-ls')
|
||||||
|
require('plugins/nvim-mapper')
|
||||||
|
|||||||
@ -7,13 +7,10 @@ local default_opts = { noremap = true, silent = true }
|
|||||||
-- Fast saving with <leader> and s
|
-- Fast saving with <leader> and s
|
||||||
map('n', '<leader>s', ':w<CR>', default_opts)
|
map('n', '<leader>s', ':w<CR>', default_opts)
|
||||||
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
|
map('n', '<leader>a', ':w|:luafile %<CR>', default_opts)
|
||||||
|
map('n', '<leader>aa', ':w|:luafile %<CR> |:PackerSync<CR>', default_opts)
|
||||||
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
|
map('i', '<leader>s', '<C-c>:w<CR>', default_opts)
|
||||||
|
-- Python Script that saves the file & moves Todos to my Todolist.
|
||||||
-- Move around splits using Ctrl + {h,j,k,l}
|
map('n', '<leader>sd', ':w|:! python3 ~/Documents/Northpass/Scripts/TodoMD/todo.py %<CR>', default_opts)
|
||||||
map('n', '<C-h>', '<C-w>h', default_opts)
|
|
||||||
map('n', '<C-j>', '<C-w>j', default_opts)
|
|
||||||
map('n', '<C-k>', '<C-w>k', default_opts)
|
|
||||||
map('n', '<C-l>', '<C-w>l', default_opts)
|
|
||||||
|
|
||||||
-- Neovim Tab Navgation via Vem-Tabline
|
-- Neovim Tab Navgation via Vem-Tabline
|
||||||
map('n', '<leader>t', ':tabnew<CR>', default_opts)
|
map('n', '<leader>t', ':tabnew<CR>', default_opts)
|
||||||
@ -40,3 +37,12 @@ map('n', '<leader>=', ':NvimTreeResize +1<CR>', default_opts)
|
|||||||
map('n', '<leader>-', ':NvimTreeResize -1<CR>', default_opts)
|
map('n', '<leader>-', ':NvimTreeResize -1<CR>', default_opts)
|
||||||
map('n', '<leader>==', ':NvimTreeResize +10<CR>', default_opts)
|
map('n', '<leader>==', ':NvimTreeResize +10<CR>', default_opts)
|
||||||
map('n', '<leader>--', ':NvimTreeResize -10<CR>', default_opts)
|
map('n', '<leader>--', ':NvimTreeResize -10<CR>', default_opts)
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
-- Telescope Keymaps
|
||||||
|
-----------------------------------------------------------
|
||||||
|
map('n', '<leader>ff', ':Telescope find_files<CR>', default_opts)
|
||||||
|
map('n', '<leader>fg', ':Telescope live_grep<CR>', default_opts)
|
||||||
|
map('n', '<leader>fb', ':Telescope buffers<CR>', default_opts)
|
||||||
|
map('n', '<leader>fe', ':Telescope file_browser<CR>', default_opts)
|
||||||
|
|||||||
@ -1,53 +0,0 @@
|
|||||||
-----------------------------------------------------------
|
|
||||||
-- Dashboard configuration file
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
-- Plugin: alpha-nvim
|
|
||||||
-- url: https://github.com/goolord/alpha-nvim
|
|
||||||
|
|
||||||
-- For configuration examples see: https://github.com/goolord/alpha-nvim/discussions/16
|
|
||||||
|
|
||||||
|
|
||||||
local alpha = require 'alpha'
|
|
||||||
local dashboard = require 'alpha.themes.dashboard'
|
|
||||||
|
|
||||||
-- Footer
|
|
||||||
local function footer()
|
|
||||||
local version = vim.version()
|
|
||||||
local print_version = "v" .. version.major .. '.' .. version.minor .. '.' .. version.patch
|
|
||||||
local datetime = os.date('%Y/%m/%d %H:%M:%S')
|
|
||||||
|
|
||||||
return print_version .. ' ' .. datetime
|
|
||||||
end
|
|
||||||
|
|
||||||
-- Banner
|
|
||||||
local banner = {
|
|
||||||
" ",
|
|
||||||
" █████ █████ ██████ █████ ███ ",
|
|
||||||
"░░███ ░░███ ░░██████ ░░███ ░███ ",
|
|
||||||
" ░███ ░███ ██████ █████ ████ ░███░███ ░███ ██████ ████████ █████████████ ░███ ",
|
|
||||||
" ░███████████ ███░░███░░███ ░███ ░███░░███░███ ███░░███░░███░░███░░███░░███░░███░███ ",
|
|
||||||
" ░███░░░░░███ ░███████ ░███ ░███ ░███ ░░██████ ░███ ░███ ░███ ░░░ ░███ ░███ ░███░███ ",
|
|
||||||
" ░███ ░███ ░███░░░ ░███ ░███ ░███ ░░█████ ░███ ░███ ░███ ░███ ░███ ░███░░░ ",
|
|
||||||
" █████ █████░░██████ ░░███████ █████ ░░█████░░██████ █████ █████░███ ████████ ",
|
|
||||||
"░░░░░ ░░░░░ ░░░░░░ ░░░░░███ ░░░░░ ░░░░░ ░░░░░░ ░░░░░ ░░░░░ ░░░ ░░░░░░░░ ",
|
|
||||||
" ███ ░███ ",
|
|
||||||
" ░░██████ ",
|
|
||||||
" ░░░░░░ ",
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
dashboard.section.header.val = banner
|
|
||||||
|
|
||||||
-- Menu
|
|
||||||
dashboard.section.buttons.val = {
|
|
||||||
dashboard.button('e', ' New file', ':ene <BAR> startinsert<CR>'),
|
|
||||||
dashboard.button('f', ' Find file', ':NvimTreeOpen<CR>'),
|
|
||||||
dashboard.button('s', ' Settings', ':e $MYVIMRC<CR>'),
|
|
||||||
dashboard.button('u', ' Update plugins', ':PackerUpdate<CR>'),
|
|
||||||
dashboard.button('q', ' Quit', ':qa<CR>'),
|
|
||||||
}
|
|
||||||
|
|
||||||
dashboard.section.footer.val = footer()
|
|
||||||
|
|
||||||
alpha.setup(dashboard.config)
|
|
||||||
@ -1,124 +0,0 @@
|
|||||||
require("headlines").setup {
|
|
||||||
markdown = {
|
|
||||||
query = vim.treesitter.parse_query(
|
|
||||||
"markdown",
|
|
||||||
[[
|
|
||||||
(atx_heading [
|
|
||||||
(atx_h1_marker)
|
|
||||||
(atx_h2_marker)
|
|
||||||
(atx_h3_marker)
|
|
||||||
(atx_h4_marker)
|
|
||||||
(atx_h5_marker)
|
|
||||||
(atx_h6_marker)
|
|
||||||
] @headline)
|
|
||||||
|
|
||||||
(thematic_break) @dash
|
|
||||||
|
|
||||||
(fenced_code_block) @codeblock
|
|
||||||
|
|
||||||
(block_quote_marker) @quote
|
|
||||||
(block_quote (paragraph (inline (block_continuation) @quote)))
|
|
||||||
]]
|
|
||||||
),
|
|
||||||
headline_highlights = { "Headline" },
|
|
||||||
codeblock_highlight = "CodeBlock",
|
|
||||||
dash_highlight = "Dash",
|
|
||||||
dash_string = "-",
|
|
||||||
quote_highlight = "Quote",
|
|
||||||
quote_string = "┃",
|
|
||||||
fat_headlines = true,
|
|
||||||
},
|
|
||||||
rmd = {
|
|
||||||
query = vim.treesitter.parse_query(
|
|
||||||
"markdown",
|
|
||||||
[[
|
|
||||||
(atx_heading [
|
|
||||||
(atx_h1_marker)
|
|
||||||
(atx_h2_marker)
|
|
||||||
(atx_h3_marker)
|
|
||||||
(atx_h4_marker)
|
|
||||||
(atx_h5_marker)
|
|
||||||
(atx_h6_marker)
|
|
||||||
] @headline)
|
|
||||||
|
|
||||||
(thematic_break) @dash
|
|
||||||
|
|
||||||
(fenced_code_block) @codeblock
|
|
||||||
|
|
||||||
(block_quote_marker) @quote
|
|
||||||
(block_quote (paragraph (inline (block_continuation) @quote)))
|
|
||||||
]]
|
|
||||||
),
|
|
||||||
treesitter_language = "markdown",
|
|
||||||
headline_highlights = { "Headline" },
|
|
||||||
codeblock_highlight = "CodeBlock",
|
|
||||||
dash_highlight = "Dash",
|
|
||||||
dash_string = "-",
|
|
||||||
quote_highlight = "Quote",
|
|
||||||
quote_string = "┃",
|
|
||||||
fat_headlines = true,
|
|
||||||
},
|
|
||||||
norg = {
|
|
||||||
query = vim.treesitter.parse_query(
|
|
||||||
"norg",
|
|
||||||
[[
|
|
||||||
[
|
|
||||||
(heading1_prefix)
|
|
||||||
(heading2_prefix)
|
|
||||||
(heading3_prefix)
|
|
||||||
(heading4_prefix)
|
|
||||||
(heading5_prefix)
|
|
||||||
(heading6_prefix)
|
|
||||||
] @headline
|
|
||||||
|
|
||||||
(weak_paragraph_delimiter) @dash
|
|
||||||
(strong_paragraph_delimiter) @doubledash
|
|
||||||
|
|
||||||
((ranged_tag
|
|
||||||
name: (tag_name) @_name
|
|
||||||
(#eq? @_name "code")
|
|
||||||
) @codeblock (#offset! @codeblock 0 0 1 0))
|
|
||||||
|
|
||||||
(quote1_prefix) @quote
|
|
||||||
]]
|
|
||||||
),
|
|
||||||
headline_highlights = { "Headline" },
|
|
||||||
codeblock_highlight = "CodeBlock",
|
|
||||||
dash_highlight = "Dash",
|
|
||||||
dash_string = "-",
|
|
||||||
doubledash_highlight = "DoubleDash",
|
|
||||||
doubledash_string = "=",
|
|
||||||
quote_highlight = "Quote",
|
|
||||||
quote_string = "┃",
|
|
||||||
fat_headlines = true,
|
|
||||||
},
|
|
||||||
org = {
|
|
||||||
query = vim.treesitter.parse_query(
|
|
||||||
"org",
|
|
||||||
[[
|
|
||||||
(headline (stars) @headline)
|
|
||||||
|
|
||||||
(
|
|
||||||
(expr) @dash
|
|
||||||
(#match? @dash "^-----+$")
|
|
||||||
)
|
|
||||||
|
|
||||||
(block
|
|
||||||
name: (expr) @_name
|
|
||||||
(#eq? @_name "SRC")
|
|
||||||
) @codeblock
|
|
||||||
|
|
||||||
(paragraph . (expr) @quote
|
|
||||||
(#eq? @quote ">")
|
|
||||||
)
|
|
||||||
]]
|
|
||||||
),
|
|
||||||
headline_highlights = { "Headline" },
|
|
||||||
codeblock_highlight = "CodeBlock",
|
|
||||||
dash_highlight = "Dash",
|
|
||||||
dash_string = "-",
|
|
||||||
quote_highlight = "Quote",
|
|
||||||
quote_string = "┃",
|
|
||||||
fat_headlines = true,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@ -1,31 +0,0 @@
|
|||||||
require'marks'.setup {
|
|
||||||
-- whether to map keybinds or not. default true
|
|
||||||
default_mappings = true,
|
|
||||||
-- which builtin marks to show. default {}
|
|
||||||
builtin_marks = { ".", "<", ">", "^" },
|
|
||||||
-- whether movements cycle back to the beginning/end of buffer. default true
|
|
||||||
cyclic = true,
|
|
||||||
-- whether the shada file is updated after modifying uppercase marks. default false
|
|
||||||
force_write_shada = false,
|
|
||||||
-- how often (in ms) to redraw signs/recompute mark positions.
|
|
||||||
-- higher values will have better performance but may cause visual lag,
|
|
||||||
-- while lower values may cause performance penalties. default 150.
|
|
||||||
refresh_interval = 250,
|
|
||||||
-- sign priorities for each type of mark - builtin marks, uppercase marks, lowercase
|
|
||||||
-- marks, and bookmarks.
|
|
||||||
-- can be either a table with all/none of the keys, or a single number, in which case
|
|
||||||
-- the priority applies to all marks.
|
|
||||||
-- default 10.
|
|
||||||
sign_priority = { lower=10, upper=15, builtin=8, bookmark=20 },
|
|
||||||
-- disables mark tracking for specific filetypes. default {}
|
|
||||||
excluded_filetypes = {},
|
|
||||||
-- marks.nvim allows you to configure up to 10 bookmark groups, each with its own
|
|
||||||
-- sign/virttext. Bookmarks can be used to group together positions and quickly move
|
|
||||||
-- across multiple buffers. default sign is '!@#$%^&*()' (from 0 to 9), and
|
|
||||||
-- default virt_text is "".
|
|
||||||
bookmark_0 = {
|
|
||||||
sign = "⚑",
|
|
||||||
virt_text = "hello world"
|
|
||||||
},
|
|
||||||
mappings = {}
|
|
||||||
}
|
|
||||||
@ -37,10 +37,13 @@ cmp.setup {
|
|||||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
['<C-Space>'] = cmp.mapping.complete(),
|
||||||
['<C-e>'] = cmp.mapping.close(),
|
["<C-e>"] = cmp.mapping({
|
||||||
|
i = cmp.mapping.abort(),
|
||||||
|
c = cmp.mapping.close(),
|
||||||
|
}),
|
||||||
|
["<C-y>"] = cmp.config.disable,
|
||||||
['<CR>'] = cmp.mapping.confirm {
|
['<CR>'] = cmp.mapping.confirm {
|
||||||
behavior = cmp.ConfirmBehavior.Replace,
|
select = false,
|
||||||
select = true,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
-- Tab mapping
|
-- Tab mapping
|
||||||
@ -68,15 +71,12 @@ cmp.setup {
|
|||||||
sources = {
|
sources = {
|
||||||
{ name = 'nvim-lsp' },
|
{ name = 'nvim-lsp' },
|
||||||
{ name = 'luasnip' },
|
{ name = 'luasnip' },
|
||||||
{ name = 'cmdline'},
|
|
||||||
{ name = 'path' },
|
{ name = 'path' },
|
||||||
{ name = 'buffer' },
|
{ name = 'buffer' },
|
||||||
{ name = 'zsh' },
|
{ name = 'bash' },
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu
|
-- see https://github.com/hrsh7th/nvim-cmp/wiki/Menu-Appearance#how-to-add-visual-studio-code-dark-theme-colors-to-the-menu
|
||||||
vim.cmd[[
|
vim.cmd[[
|
||||||
highlight! link CmpItemMenu Comment
|
highlight! link CmpItemMenu Comment
|
||||||
|
|||||||
@ -39,7 +39,7 @@ vim.cmd([[
|
|||||||
-- Add additional capabilities supported by nvim-cmp
|
-- Add additional capabilities supported by nvim-cmp
|
||||||
-- See: https://github.com/neovim/nvim-lspconfig/wiki/Autocompletion
|
-- See: https://github.com/neovim/nvim-lspconfig/wiki/Autocompletion
|
||||||
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
local capabilities = vim.lsp.protocol.make_client_capabilities()
|
||||||
capabilities = cmp_nvim_lsp.update_capabilities(capabilities)
|
capabilities = cmp_nvim_lsp.default_capabilities(capabilities)
|
||||||
|
|
||||||
capabilities.textDocument.completion.completionItem.documentationFormat = { 'markdown', 'plaintext' }
|
capabilities.textDocument.completion.completionItem.documentationFormat = { 'markdown', 'plaintext' }
|
||||||
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
capabilities.textDocument.completion.completionItem.snippetSupport = true
|
||||||
@ -127,7 +127,7 @@ end
|
|||||||
-- Use a loop to conveniently call 'setup' on multiple servers and
|
-- Use a loop to conveniently call 'setup' on multiple servers and
|
||||||
-- map buffer local keybindings when the language server attaches.
|
-- map buffer local keybindings when the language server attaches.
|
||||||
-- Add your language server below:
|
-- Add your language server below:
|
||||||
local servers = { 'bashls', 'pyright', 'clangd', 'html', 'cssls', 'tsserver' }
|
local servers = { 'bashls', 'pyright', 'yamlls', 'sumneko_lua' }
|
||||||
|
|
||||||
-- Call setup
|
-- Call setup
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
|
|||||||
12
lua/plugins/nvim-mapper.lua
Normal file
12
lua/plugins/nvim-mapper.lua
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
require("nvim-mapper").setup({
|
||||||
|
-- do not assign the default keymap (<leader>MM)
|
||||||
|
no_map = false,
|
||||||
|
-- where should ripgrep look for your keybinds definitions.
|
||||||
|
-- Default config search path is ~/.config/nvim/lua
|
||||||
|
search_path = os.getenv("HOME") .. "/.config/nvim/lua",
|
||||||
|
-- what should be done with the selected keybind when pressing enter.
|
||||||
|
-- Available actions:
|
||||||
|
-- * "definition" - Go to keybind definition (default)
|
||||||
|
-- * "execute" - Execute the keybind command
|
||||||
|
action_on_enter = "definition",
|
||||||
|
})
|
||||||
@ -1,30 +0,0 @@
|
|||||||
-----------------------------------------------------------
|
|
||||||
-- File manager configuration file
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
-- Plugin: nvim-tree
|
|
||||||
-- url: https://github.com/kyazdani42/nvim-tree.lua
|
|
||||||
|
|
||||||
--- Keybindings are defined in `keymapping.lua`:
|
|
||||||
--- https://github.com/kyazdani42/nvim-tree.lua#keybindings
|
|
||||||
|
|
||||||
--- Note: options under the g: command should be set BEFORE running the
|
|
||||||
--- setup function: https://github.com/kyazdani42/nvim-tree.lua#setup
|
|
||||||
--- See: `help NvimTree`
|
|
||||||
local g = vim.g
|
|
||||||
|
|
||||||
require('nvim-tree').setup {
|
|
||||||
open_on_setup = true,
|
|
||||||
update_cwd = true,
|
|
||||||
filters = {
|
|
||||||
dotfiles = true,
|
|
||||||
custom = { '.git', 'node_modules', '.cache', '.bin' },
|
|
||||||
},
|
|
||||||
git = {
|
|
||||||
enable = true,
|
|
||||||
ignore = true,
|
|
||||||
},
|
|
||||||
view = {
|
|
||||||
width = 37,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
@ -15,8 +15,7 @@ end
|
|||||||
nvim_treesitter.setup {
|
nvim_treesitter.setup {
|
||||||
-- A list of parser names, or "all"
|
-- A list of parser names, or "all"
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
'bash', 'css', 'html', 'javascript', 'json', 'lua', 'python',
|
'bash', 'json', 'lua', 'python', 'vim', 'yaml', 'typescript', 'gitcommit', 'dockerfile', 'regex',
|
||||||
'vim', 'yaml',
|
|
||||||
},
|
},
|
||||||
-- Install parsers synchronously (only applied to `ensure_installed`)
|
-- Install parsers synchronously (only applied to `ensure_installed`)
|
||||||
sync_install = false,
|
sync_install = false,
|
||||||
|
|||||||
@ -14,8 +14,11 @@ return require'packer'.startup(function()
|
|||||||
-----------------------------------------------------------------
|
-----------------------------------------------------------------
|
||||||
|
|
||||||
-- Easy Way to install Language Servers
|
-- Easy Way to install Language Servers
|
||||||
use 'williamboman/mason.nvim'
|
use {
|
||||||
use 'williamboman/mason-lspconfig.nvim'
|
'williamboman/mason.nvim',
|
||||||
|
'williamboman/mason-lspconfig.nvim',
|
||||||
|
'neovim/nvim-lspconfig',
|
||||||
|
}
|
||||||
|
|
||||||
-- Neovim Autocomplete with LSP
|
-- Neovim Autocomplete with LSP
|
||||||
use {
|
use {
|
||||||
@ -32,17 +35,17 @@ return require'packer'.startup(function()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
use {
|
use ({
|
||||||
'L3MON4D3/LuaSnip',
|
'L3MON4D3/LuaSnip', tag = "v1.1.0",
|
||||||
requires = {
|
requires = {
|
||||||
'saadparwaiz1/cmp_luasnip'
|
'saadparwaiz1/cmp_luasnip'
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
|
|
||||||
-- Treesitter interface
|
-- Treesitter interface
|
||||||
use {
|
use {
|
||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
--run = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
|
run = function() require('nvim-treesitter.install').update({ with_sync = true }) end,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- Null-LS
|
-- Null-LS
|
||||||
@ -52,17 +55,10 @@ return require'packer'.startup(function()
|
|||||||
-- General Functionality
|
-- General Functionality
|
||||||
------------------------------------------------------------
|
------------------------------------------------------------
|
||||||
|
|
||||||
-- Find & Search LSP Tags
|
|
||||||
use 'liuchengxu/vista.vim'
|
|
||||||
-- Snippets
|
-- Snippets
|
||||||
use 'rafamadriz/friendly-snippets'
|
use 'rafamadriz/friendly-snippets'
|
||||||
|
|
||||||
-- Rename and Work with Buffer & Tabs
|
|
||||||
use 'pacha/vem-tabline'
|
|
||||||
|
|
||||||
-- Nvim Tree File Manager on the Left
|
|
||||||
use 'kyazdani42/nvim-tree.lua'
|
|
||||||
|
|
||||||
-- Trouble Shows Errors with Files.
|
-- Trouble Shows Errors with Files.
|
||||||
use {
|
use {
|
||||||
"folke/trouble.nvim",
|
"folke/trouble.nvim",
|
||||||
@ -73,68 +69,37 @@ return require'packer'.startup(function()
|
|||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Manage all your Keymaps!
|
||||||
|
use {
|
||||||
|
"lazytanuki/nvim-mapper",
|
||||||
|
config = function() require("nvim-mapper").setup{} end,
|
||||||
|
before = "telescope.nvim"
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Close your brackets easily
|
||||||
use {
|
use {
|
||||||
'windwp/nvim-autopairs',
|
'windwp/nvim-autopairs',
|
||||||
config = function()
|
config = function()
|
||||||
require('nvim-autopairs').setup()
|
require('nvim-autopairs').setup({
|
||||||
|
})
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Which Key
|
||||||
|
use {
|
||||||
|
"folke/which-key.nvim",
|
||||||
|
config = function()
|
||||||
|
require("which-key").setup {
|
||||||
|
}
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
use 'rcarriga/nvim-notify'
|
use 'rcarriga/nvim-notify'
|
||||||
|
|
||||||
use {
|
|
||||||
'phaazon/mind.nvim',
|
|
||||||
branch = 'v2.2',
|
|
||||||
requires = { 'nvim-lua/plenary.nvim' },
|
|
||||||
config = function()
|
|
||||||
require'mind'.setup()
|
|
||||||
end
|
|
||||||
}
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
-- Markdown Plugins
|
|
||||||
------------------------------------------------------------
|
|
||||||
|
|
||||||
use({
|
|
||||||
'jakewvincent/mkdnflow.nvim',
|
|
||||||
config = function()
|
|
||||||
require('mkdnflow').setup({
|
|
||||||
mappings = {
|
|
||||||
MkdnToggleToDo = {{'i', 'n'}, '<C-Space>'},
|
|
||||||
MkdnNewListItem = {{'i'}, '<CR>'},
|
|
||||||
MkdnEnter = {{'n'}, '<CR>'},
|
|
||||||
MkdnTableNextCell = false,
|
|
||||||
MkdnTab = {{'i',}, '<Tab>'},
|
|
||||||
MkdnSTab = {{'i'}, '<S-Tab>'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
end
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Headlines Extension
|
|
||||||
use 'lukas-reineke/headlines.nvim'
|
|
||||||
|
|
||||||
-- Follow MD Links
|
|
||||||
use 'jghauser/follow-md-links.nvim'
|
|
||||||
|
|
||||||
|
|
||||||
-- Markdown Preview
|
|
||||||
use({
|
|
||||||
"iamcco/markdown-preview.nvim",
|
|
||||||
run = function() vim.fn["mkdp#util#install"]() end,
|
|
||||||
})
|
|
||||||
|
|
||||||
use 'chentoast/marks.nvim'
|
|
||||||
|
|
||||||
-- Prettier Plugin for Neovim specifically
|
|
||||||
-- use'MunifTanjim/prettier.nvim'
|
|
||||||
|
|
||||||
---------------------------------------------------------
|
---------------------------------------------------------
|
||||||
-- Text, Icons, Symbols
|
-- Text, Icons, Symbols
|
||||||
----------------------------------------------------------
|
----------------------------------------------------------
|
||||||
|
|
||||||
use 'lukas-reineke/indent-blankline.nvim'
|
|
||||||
|
|
||||||
use 'simrat39/symbols-outline.nvim'
|
use 'simrat39/symbols-outline.nvim'
|
||||||
|
|
||||||
use 'kyazdani42/nvim-web-devicons'
|
use 'kyazdani42/nvim-web-devicons'
|
||||||
@ -142,29 +107,28 @@ return require'packer'.startup(function()
|
|||||||
use 'karb94/neoscroll.nvim'
|
use 'karb94/neoscroll.nvim'
|
||||||
|
|
||||||
-- Allow Popups for Telescope etc
|
-- Allow Popups for Telescope etc
|
||||||
--use 'nvim-lua/popup.nvim'
|
use 'nvim-lua/popup.nvim'
|
||||||
|
use 'nvim-lua/plenary.nvim'
|
||||||
|
|
||||||
-- Todo & Comments for Organization
|
-- The all famous telescope
|
||||||
use {
|
use {
|
||||||
"folke/todo-comments.nvim",
|
'nvim-telescope/telescope.nvim', tag = '0.1.0',
|
||||||
requires = "nvim-lua/plenary.nvim",
|
requires = 'nvim-lua/plenary.nvim',
|
||||||
config = function()
|
config = function()
|
||||||
require("todo-comments").setup {
|
require("telescope").setup({
|
||||||
}
|
})
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
use {
|
||||||
|
"nvim-telescope/telescope-file-browser.nvim"
|
||||||
|
}
|
||||||
|
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Various Color Schemes, Dashboard, etc
|
-- Various Color Schemes, Dashboard, etc
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
use 'tjdevries/colorbuddy.nvim'
|
|
||||||
use 'bkegley/gloombuddy'
|
|
||||||
use 'tanvirtin/monokai.nvim'
|
|
||||||
use 'Mofiqul/dracula.nvim'
|
use 'Mofiqul/dracula.nvim'
|
||||||
use 'lunarvim/colorschemes'
|
use 'lunarvim/colorschemes'
|
||||||
use { 'rose-pine/neovim', as = 'rose-pine' }
|
|
||||||
use 'folke/tokyonight.nvim'
|
|
||||||
|
|
||||||
use {
|
use {
|
||||||
'feline-nvim/feline.nvim',
|
'feline-nvim/feline.nvim',
|
||||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
requires = { 'kyazdani42/nvim-web-devicons' },
|
||||||
@ -175,10 +139,4 @@ return require'packer'.startup(function()
|
|||||||
'lewis6991/gitsigns.nvim',
|
'lewis6991/gitsigns.nvim',
|
||||||
requires = { 'nvim-lua/plenary.nvim' },
|
requires = { 'nvim-lua/plenary.nvim' },
|
||||||
}
|
}
|
||||||
|
|
||||||
-- The Dashboard
|
|
||||||
use {
|
|
||||||
'goolord/alpha-nvim',
|
|
||||||
requires = { 'kyazdani42/nvim-web-devicons' },
|
|
||||||
}
|
|
||||||
end)
|
end)
|
||||||
|
|||||||
@ -1,38 +0,0 @@
|
|||||||
local prettier = require("prettier")
|
|
||||||
|
|
||||||
prettier.setup({
|
|
||||||
bin = 'prettier', -- or `prettierd`
|
|
||||||
filetypes = {
|
|
||||||
"css",
|
|
||||||
"graphql",
|
|
||||||
"html",
|
|
||||||
"javascript",
|
|
||||||
"javascriptreact",
|
|
||||||
"json",
|
|
||||||
"less",
|
|
||||||
"markdown",
|
|
||||||
"scss",
|
|
||||||
"typescript",
|
|
||||||
"typescriptreact",
|
|
||||||
"yaml",
|
|
||||||
"python",
|
|
||||||
},
|
|
||||||
|
|
||||||
-- prettier format options (you can use config files too. ex: `.prettierrc`)
|
|
||||||
arrow_parens = "always",
|
|
||||||
bracket_spacing = true,
|
|
||||||
embedded_language_formatting = "auto",
|
|
||||||
end_of_line = "lf",
|
|
||||||
html_whitespace_sensitivity = "css",
|
|
||||||
jsx_bracket_same_line = false,
|
|
||||||
jsx_single_quote = false,
|
|
||||||
print_width = 80,
|
|
||||||
prose_wrap = "preserve",
|
|
||||||
quote_props = "as-needed",
|
|
||||||
semi = true,
|
|
||||||
single_quote = false,
|
|
||||||
tab_width = 2,
|
|
||||||
trailing_comma = "es5",
|
|
||||||
use_tabs = false,
|
|
||||||
vue_indent_script_and_style = false,
|
|
||||||
})
|
|
||||||
41
lua/plugins/telescope.lua
Normal file
41
lua/plugins/telescope.lua
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
local g = vim.g
|
||||||
|
|
||||||
|
local fb_actions = require "telescope".extensions.file_browser.actions
|
||||||
|
|
||||||
|
local telescope_installer = require('telescope').setup({
|
||||||
|
defaults = {
|
||||||
|
-- Default configuration for telescope goes here:
|
||||||
|
previewer = true,
|
||||||
|
file_previewer = require'telescope.previewers'.vim_buffer_cat.new,
|
||||||
|
-- config_key = value,
|
||||||
|
mappings = {
|
||||||
|
i = {
|
||||||
|
-- map actions.which_key to <C-h> (default: <C-/>)
|
||||||
|
-- actions.which_key shows the mappings for your picker,
|
||||||
|
-- e.g. git_{create, delete, ...}_branch for the git_branches picker
|
||||||
|
["<C-h>"] = "which_key"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
pickers = {
|
||||||
|
find_files = {
|
||||||
|
theme = "dropdown",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
extensions = {
|
||||||
|
file_browser = {
|
||||||
|
theme = "ivy",
|
||||||
|
-- disables netrw and use telescope-file-browser in its place
|
||||||
|
hijack_netrw = true,
|
||||||
|
mappings = {
|
||||||
|
["i"] = {
|
||||||
|
},
|
||||||
|
["n"] = {
|
||||||
|
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
require("telescope").load_extension "file_browser"
|
||||||
@ -19,7 +19,7 @@ opt.clipboard = 'unnamedplus' -- Copy/paste to system clipboard
|
|||||||
opt.swapfile = false -- Don't use swapfile
|
opt.swapfile = false -- Don't use swapfile
|
||||||
opt.shadafile = "NONE"
|
opt.shadafile = "NONE"
|
||||||
opt.shadafile = ""
|
opt.shadafile = ""
|
||||||
opt.shell = "/bin/zsh"
|
opt.shell = "/bin/bash"
|
||||||
opt.updatetime = 200
|
opt.updatetime = 200
|
||||||
opt.cursorline = true
|
opt.cursorline = true
|
||||||
g.markdown_folding = 1
|
g.markdown_folding = 1
|
||||||
@ -48,7 +48,7 @@ opt.synmaxcol = 240 -- Max column for syntax highlight
|
|||||||
-- Colorscheme
|
-- Colorscheme
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
opt.termguicolors = true -- Enable 24-bit RGB colors
|
opt.termguicolors = true -- Enable 24-bit RGB colors
|
||||||
cmd [[colorscheme tokyonight]]
|
cmd [[colorscheme dracula]]
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
-- Tabs, indent
|
-- Tabs, indent
|
||||||
-----------------------------------------------------------
|
-----------------------------------------------------------
|
||||||
|
|||||||
@ -49,8 +49,8 @@ local function save_profiles(threshold)
|
|||||||
end
|
end
|
||||||
|
|
||||||
time([[Luarocks path setup]], true)
|
time([[Luarocks path setup]], true)
|
||||||
local package_path_str = "/Users/normrasmussen/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/Users/normrasmussen/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/Users/normrasmussen/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/Users/normrasmussen/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua"
|
local package_path_str = "/root/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/share/lua/5.1/?/init.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?.lua;/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/luarocks/rocks-5.1/?/init.lua"
|
||||||
local install_cpath_pattern = "/Users/normrasmussen/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so"
|
local install_cpath_pattern = "/root/.cache/nvim/packer_hererocks/2.1.0-beta3/lib/lua/5.1/?.so"
|
||||||
if not string.find(package.path, package_path_str, 1, true) then
|
if not string.find(package.path, package_path_str, 1, true) then
|
||||||
package.path = package.path .. ';' .. package_path_str
|
package.path = package.path .. ';' .. package_path_str
|
||||||
end
|
end
|
||||||
@ -76,247 +76,187 @@ time([[Defining packer_plugins]], true)
|
|||||||
_G.packer_plugins = {
|
_G.packer_plugins = {
|
||||||
LuaSnip = {
|
LuaSnip = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/LuaSnip",
|
path = "/root/.local/share/nvim/site/pack/packer/start/LuaSnip",
|
||||||
url = "https://github.com/L3MON4D3/LuaSnip"
|
url = "https://github.com/L3MON4D3/LuaSnip"
|
||||||
},
|
},
|
||||||
["alpha-nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/alpha-nvim",
|
|
||||||
url = "https://github.com/goolord/alpha-nvim"
|
|
||||||
},
|
|
||||||
["cmp-buffer"] = {
|
["cmp-buffer"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp-buffer",
|
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-buffer",
|
||||||
url = "https://github.com/hrsh7th/cmp-buffer"
|
url = "https://github.com/hrsh7th/cmp-buffer"
|
||||||
},
|
},
|
||||||
["cmp-cmdline"] = {
|
["cmp-cmdline"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp-cmdline",
|
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-cmdline",
|
||||||
url = "https://github.com/hrsh7th/cmp-cmdline"
|
url = "https://github.com/hrsh7th/cmp-cmdline"
|
||||||
},
|
},
|
||||||
["cmp-nvim-lsp"] = {
|
["cmp-nvim-lsp"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
|
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-nvim-lsp",
|
||||||
url = "https://github.com/hrsh7th/cmp-nvim-lsp"
|
url = "https://github.com/hrsh7th/cmp-nvim-lsp"
|
||||||
},
|
},
|
||||||
["cmp-path"] = {
|
["cmp-path"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp-path",
|
path = "/root/.local/share/nvim/site/pack/packer/start/cmp-path",
|
||||||
url = "https://github.com/hrsh7th/cmp-path"
|
url = "https://github.com/hrsh7th/cmp-path"
|
||||||
},
|
},
|
||||||
cmp_luasnip = {
|
cmp_luasnip = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
|
path = "/root/.local/share/nvim/site/pack/packer/start/cmp_luasnip",
|
||||||
url = "https://github.com/saadparwaiz1/cmp_luasnip"
|
url = "https://github.com/saadparwaiz1/cmp_luasnip"
|
||||||
},
|
},
|
||||||
["colorbuddy.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/colorbuddy.nvim",
|
|
||||||
url = "https://github.com/tjdevries/colorbuddy.nvim"
|
|
||||||
},
|
|
||||||
colorschemes = {
|
colorschemes = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/colorschemes",
|
path = "/root/.local/share/nvim/site/pack/packer/start/colorschemes",
|
||||||
url = "https://github.com/lunarvim/colorschemes"
|
url = "https://github.com/lunarvim/colorschemes"
|
||||||
},
|
},
|
||||||
["dracula.nvim"] = {
|
["dracula.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/dracula.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/dracula.nvim",
|
||||||
url = "https://github.com/Mofiqul/dracula.nvim"
|
url = "https://github.com/Mofiqul/dracula.nvim"
|
||||||
},
|
},
|
||||||
["feline.nvim"] = {
|
["feline.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/feline.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/feline.nvim",
|
||||||
url = "https://github.com/feline-nvim/feline.nvim"
|
url = "https://github.com/feline-nvim/feline.nvim"
|
||||||
},
|
},
|
||||||
["follow-md-links.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/follow-md-links.nvim",
|
|
||||||
url = "https://github.com/jghauser/follow-md-links.nvim"
|
|
||||||
},
|
|
||||||
["friendly-snippets"] = {
|
["friendly-snippets"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/friendly-snippets",
|
path = "/root/.local/share/nvim/site/pack/packer/start/friendly-snippets",
|
||||||
url = "https://github.com/rafamadriz/friendly-snippets"
|
url = "https://github.com/rafamadriz/friendly-snippets"
|
||||||
},
|
},
|
||||||
["gitsigns.nvim"] = {
|
["gitsigns.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/gitsigns.nvim",
|
||||||
url = "https://github.com/lewis6991/gitsigns.nvim"
|
url = "https://github.com/lewis6991/gitsigns.nvim"
|
||||||
},
|
},
|
||||||
gloombuddy = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/gloombuddy",
|
|
||||||
url = "https://github.com/bkegley/gloombuddy"
|
|
||||||
},
|
|
||||||
["headlines.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/headlines.nvim",
|
|
||||||
url = "https://github.com/lukas-reineke/headlines.nvim"
|
|
||||||
},
|
|
||||||
["indent-blankline.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/indent-blankline.nvim",
|
|
||||||
url = "https://github.com/lukas-reineke/indent-blankline.nvim"
|
|
||||||
},
|
|
||||||
["markdown-preview.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/markdown-preview.nvim",
|
|
||||||
url = "https://github.com/iamcco/markdown-preview.nvim"
|
|
||||||
},
|
|
||||||
["marks.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/marks.nvim",
|
|
||||||
url = "https://github.com/chentoast/marks.nvim"
|
|
||||||
},
|
|
||||||
["mason-lspconfig.nvim"] = {
|
["mason-lspconfig.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/mason-lspconfig.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/mason-lspconfig.nvim",
|
||||||
url = "https://github.com/williamboman/mason-lspconfig.nvim"
|
url = "https://github.com/williamboman/mason-lspconfig.nvim"
|
||||||
},
|
},
|
||||||
["mason.nvim"] = {
|
["mason.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/mason.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/mason.nvim",
|
||||||
url = "https://github.com/williamboman/mason.nvim"
|
url = "https://github.com/williamboman/mason.nvim"
|
||||||
},
|
},
|
||||||
["mind.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n2\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\tmind\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/mind.nvim",
|
|
||||||
url = "https://github.com/phaazon/mind.nvim"
|
|
||||||
},
|
|
||||||
["mkdnflow.nvim"] = {
|
|
||||||
config = { "\27LJ\2\n<EFBFBD>\2\0\0\6\0\21\0\0296\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\19\0005\3\5\0005\4\4\0005\5\3\0>\5\1\4=\4\6\0035\4\b\0005\5\a\0>\5\1\4=\4\t\0035\4\v\0005\5\n\0>\5\1\4=\4\f\0035\4\14\0005\5\r\0>\5\1\4=\4\15\0035\4\17\0005\5\16\0>\5\1\4=\4\18\3=\3\20\2B\0\2\1K\0\1\0\rmappings\1\0\0\rMkdnSTab\1\3\0\0\0\f<S-Tab>\1\2\0\0\6i\fMkdnTab\1\3\0\0\0\n<Tab>\1\2\0\0\6i\14MkdnEnter\1\3\0\0\0\t<CR>\1\2\0\0\6n\20MkdnNewListItem\1\3\0\0\0\t<CR>\1\2\0\0\6i\19MkdnToggleToDo\1\0\1\22MkdnTableNextCell\1\1\3\0\0\0\14<C-Space>\1\3\0\0\6i\6n\nsetup\rmkdnflow\frequire\0" },
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/mkdnflow.nvim",
|
|
||||||
url = "https://github.com/jakewvincent/mkdnflow.nvim"
|
|
||||||
},
|
|
||||||
["monokai.nvim"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/monokai.nvim",
|
|
||||||
url = "https://github.com/tanvirtin/monokai.nvim"
|
|
||||||
},
|
|
||||||
["neoscroll.nvim"] = {
|
["neoscroll.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/neoscroll.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/neoscroll.nvim",
|
||||||
url = "https://github.com/karb94/neoscroll.nvim"
|
url = "https://github.com/karb94/neoscroll.nvim"
|
||||||
},
|
},
|
||||||
["null-ls.nvim"] = {
|
["null-ls.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/null-ls.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/null-ls.nvim",
|
||||||
url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
|
url = "https://github.com/jose-elias-alvarez/null-ls.nvim"
|
||||||
},
|
},
|
||||||
["nvim-autopairs"] = {
|
["nvim-autopairs"] = {
|
||||||
config = { "\27LJ\2\n<\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0" },
|
config = { "\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-autopairs",
|
||||||
url = "https://github.com/windwp/nvim-autopairs"
|
url = "https://github.com/windwp/nvim-autopairs"
|
||||||
},
|
},
|
||||||
["nvim-cmp"] = {
|
["nvim-cmp"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-cmp",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-cmp",
|
||||||
url = "https://github.com/hrsh7th/nvim-cmp"
|
url = "https://github.com/hrsh7th/nvim-cmp"
|
||||||
},
|
},
|
||||||
["nvim-lspconfig"] = {
|
["nvim-lspconfig"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-lspconfig",
|
||||||
url = "https://github.com/neovim/nvim-lspconfig"
|
url = "https://github.com/neovim/nvim-lspconfig"
|
||||||
},
|
},
|
||||||
|
["nvim-mapper"] = {
|
||||||
|
config = { "\27LJ\2\n=\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\16nvim-mapper\frequire\0" },
|
||||||
|
loaded = true,
|
||||||
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-mapper",
|
||||||
|
url = "https://github.com/lazytanuki/nvim-mapper"
|
||||||
|
},
|
||||||
["nvim-notify"] = {
|
["nvim-notify"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-notify",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-notify",
|
||||||
url = "https://github.com/rcarriga/nvim-notify"
|
url = "https://github.com/rcarriga/nvim-notify"
|
||||||
},
|
},
|
||||||
["nvim-tree.lua"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-tree.lua",
|
|
||||||
url = "https://github.com/kyazdani42/nvim-tree.lua"
|
|
||||||
},
|
|
||||||
["nvim-treesitter"] = {
|
["nvim-treesitter"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-treesitter",
|
||||||
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
url = "https://github.com/nvim-treesitter/nvim-treesitter"
|
||||||
},
|
},
|
||||||
["nvim-web-devicons"] = {
|
["nvim-web-devicons"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
|
path = "/root/.local/share/nvim/site/pack/packer/start/nvim-web-devicons",
|
||||||
url = "https://github.com/kyazdani42/nvim-web-devicons"
|
url = "https://github.com/kyazdani42/nvim-web-devicons"
|
||||||
},
|
},
|
||||||
["packer.nvim"] = {
|
["packer.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/packer.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/packer.nvim",
|
||||||
url = "https://github.com/wbthomason/packer.nvim"
|
url = "https://github.com/wbthomason/packer.nvim"
|
||||||
},
|
},
|
||||||
["plenary.nvim"] = {
|
["plenary.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/plenary.nvim",
|
||||||
url = "https://github.com/nvim-lua/plenary.nvim"
|
url = "https://github.com/nvim-lua/plenary.nvim"
|
||||||
},
|
},
|
||||||
["rose-pine"] = {
|
["popup.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/rose-pine",
|
path = "/root/.local/share/nvim/site/pack/packer/start/popup.nvim",
|
||||||
url = "https://github.com/rose-pine/neovim"
|
url = "https://github.com/nvim-lua/popup.nvim"
|
||||||
},
|
},
|
||||||
["symbols-outline.nvim"] = {
|
["symbols-outline.nvim"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/symbols-outline.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/symbols-outline.nvim",
|
||||||
url = "https://github.com/simrat39/symbols-outline.nvim"
|
url = "https://github.com/simrat39/symbols-outline.nvim"
|
||||||
},
|
},
|
||||||
["todo-comments.nvim"] = {
|
["telescope-file-browser.nvim"] = {
|
||||||
config = { "\27LJ\2\n?\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\18todo-comments\frequire\0" },
|
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/todo-comments.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/telescope-file-browser.nvim",
|
||||||
url = "https://github.com/folke/todo-comments.nvim"
|
url = "https://github.com/nvim-telescope/telescope-file-browser.nvim"
|
||||||
},
|
},
|
||||||
["tokyonight.nvim"] = {
|
["telescope.nvim"] = {
|
||||||
|
config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/tokyonight.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/telescope.nvim",
|
||||||
url = "https://github.com/folke/tokyonight.nvim"
|
url = "https://github.com/nvim-telescope/telescope.nvim"
|
||||||
},
|
},
|
||||||
["trouble.nvim"] = {
|
["trouble.nvim"] = {
|
||||||
config = { "\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0" },
|
config = { "\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/trouble.nvim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/trouble.nvim",
|
||||||
url = "https://github.com/folke/trouble.nvim"
|
url = "https://github.com/folke/trouble.nvim"
|
||||||
},
|
},
|
||||||
["vem-tabline"] = {
|
|
||||||
loaded = true,
|
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/vem-tabline",
|
|
||||||
url = "https://github.com/pacha/vem-tabline"
|
|
||||||
},
|
|
||||||
["vim-wakatime"] = {
|
["vim-wakatime"] = {
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/vim-wakatime",
|
path = "/root/.local/share/nvim/site/pack/packer/start/vim-wakatime",
|
||||||
url = "https://github.com/wakatime/vim-wakatime"
|
url = "https://github.com/wakatime/vim-wakatime"
|
||||||
},
|
},
|
||||||
["vista.vim"] = {
|
["which-key.nvim"] = {
|
||||||
|
config = { "\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0" },
|
||||||
loaded = true,
|
loaded = true,
|
||||||
path = "/Users/normrasmussen/.local/share/nvim/site/pack/packer/start/vista.vim",
|
path = "/root/.local/share/nvim/site/pack/packer/start/which-key.nvim",
|
||||||
url = "https://github.com/liuchengxu/vista.vim"
|
url = "https://github.com/folke/which-key.nvim"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
time([[Defining packer_plugins]], false)
|
time([[Defining packer_plugins]], false)
|
||||||
|
-- Config for: nvim-mapper
|
||||||
|
time([[Config for nvim-mapper]], true)
|
||||||
|
try_loadstring("\27LJ\2\n=\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\16nvim-mapper\frequire\0", "config", "nvim-mapper")
|
||||||
|
time([[Config for nvim-mapper]], false)
|
||||||
|
-- Config for: telescope.nvim
|
||||||
|
time([[Config for telescope.nvim]], true)
|
||||||
|
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14telescope\frequire\0", "config", "telescope.nvim")
|
||||||
|
time([[Config for telescope.nvim]], false)
|
||||||
-- Config for: trouble.nvim
|
-- Config for: trouble.nvim
|
||||||
time([[Config for trouble.nvim]], true)
|
time([[Config for trouble.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0", "config", "trouble.nvim")
|
try_loadstring("\27LJ\2\n9\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\ftrouble\frequire\0", "config", "trouble.nvim")
|
||||||
time([[Config for trouble.nvim]], false)
|
time([[Config for trouble.nvim]], false)
|
||||||
-- Config for: todo-comments.nvim
|
|
||||||
time([[Config for todo-comments.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n?\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\18todo-comments\frequire\0", "config", "todo-comments.nvim")
|
|
||||||
time([[Config for todo-comments.nvim]], false)
|
|
||||||
-- Config for: mind.nvim
|
|
||||||
time([[Config for mind.nvim]], true)
|
|
||||||
try_loadstring("\27LJ\2\n2\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\tmind\frequire\0", "config", "mind.nvim")
|
|
||||||
time([[Config for mind.nvim]], false)
|
|
||||||
-- Config for: nvim-autopairs
|
-- Config for: nvim-autopairs
|
||||||
time([[Config for nvim-autopairs]], true)
|
time([[Config for nvim-autopairs]], true)
|
||||||
try_loadstring("\27LJ\2\n<\0\0\3\0\3\0\0066\0\0\0'\2\1\0B\0\2\0029\0\2\0B\0\1\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
|
try_loadstring("\27LJ\2\n@\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\19nvim-autopairs\frequire\0", "config", "nvim-autopairs")
|
||||||
time([[Config for nvim-autopairs]], false)
|
time([[Config for nvim-autopairs]], false)
|
||||||
-- Config for: mkdnflow.nvim
|
-- Config for: which-key.nvim
|
||||||
time([[Config for mkdnflow.nvim]], true)
|
time([[Config for which-key.nvim]], true)
|
||||||
try_loadstring("\27LJ\2\n<EFBFBD>\2\0\0\6\0\21\0\0296\0\0\0'\2\1\0B\0\2\0029\0\2\0005\2\19\0005\3\5\0005\4\4\0005\5\3\0>\5\1\4=\4\6\0035\4\b\0005\5\a\0>\5\1\4=\4\t\0035\4\v\0005\5\n\0>\5\1\4=\4\f\0035\4\14\0005\5\r\0>\5\1\4=\4\15\0035\4\17\0005\5\16\0>\5\1\4=\4\18\3=\3\20\2B\0\2\1K\0\1\0\rmappings\1\0\0\rMkdnSTab\1\3\0\0\0\f<S-Tab>\1\2\0\0\6i\fMkdnTab\1\3\0\0\0\n<Tab>\1\2\0\0\6i\14MkdnEnter\1\3\0\0\0\t<CR>\1\2\0\0\6n\20MkdnNewListItem\1\3\0\0\0\t<CR>\1\2\0\0\6i\19MkdnToggleToDo\1\0\1\22MkdnTableNextCell\1\1\3\0\0\0\14<C-Space>\1\3\0\0\6i\6n\nsetup\rmkdnflow\frequire\0", "config", "mkdnflow.nvim")
|
try_loadstring("\27LJ\2\n;\0\0\3\0\3\0\a6\0\0\0'\2\1\0B\0\2\0029\0\2\0004\2\0\0B\0\2\1K\0\1\0\nsetup\14which-key\frequire\0", "config", "which-key.nvim")
|
||||||
time([[Config for mkdnflow.nvim]], false)
|
time([[Config for which-key.nvim]], false)
|
||||||
|
|
||||||
_G._packer.inside_compile = false
|
_G._packer.inside_compile = false
|
||||||
if _G._packer.needs_bufread == true then
|
if _G._packer.needs_bufread == true then
|
||||||
|
|||||||
Reference in New Issue
Block a user