this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

simpler local configs

+49 -61
+2
git/gitignore
··· 2 2 *.swo 3 3 *~ 4 4 .vagrant 5 + seth.nvim.lua 5 6 NOTES.sethetter.md 6 7 TODO.sethetter.md 7 8 _sethetter* 9 + _seth* 8 10 .#* 9 11 .tern-port 10 12 code/workspaceStorage
+6 -4
nvim/lazy-lock.json
··· 1 1 { 2 2 "auto-dark-mode.nvim": { "branch": "master", "commit": "d365beccca05ffcb01e50109f2adca2459c3995a" }, 3 - "avante.nvim": { "branch": "main", "commit": "0aa2659580e5756555577fad3e75eedc34620f25" }, 3 + "avante.nvim": { "branch": "main", "commit": "9fbe0256f277a940fa61dce127129c1e8a3916a0" }, 4 + "blink.cmp": { "branch": "main", "commit": "1628800e1747ecc767368cab45916177c723da82" }, 4 5 "bufferline.nvim": { "branch": "main", "commit": "5c528bee3dd797d5bd6bae5f229411939b25b203" }, 5 6 "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, 6 7 "copilot.lua": { "branch": "master", "commit": "f8d8d872bb319f640d5177dad5fbf01f7a16d7d0" }, ··· 12 13 "goyo.vim": { "branch": "master", "commit": "fa0263d456dd43f5926484d1c4c7022dfcb21ba9" }, 13 14 "img-clip.nvim": { "branch": "main", "commit": "28a32d811d69042f4fa5c3d5fa35571df2bc1623" }, 14 15 "lazy.nvim": { "branch": "main", "commit": "b1134ab82ee4279e31f7ddf7e34b2a99eb9b7bc9" }, 15 - "mason-lspconfig.nvim": { "branch": "main", "commit": "4d0e5b49363cac187326998b96aa6a2884e0e89b" }, 16 + "lazydev.nvim": { "branch": "main", "commit": "d5800897d9180cea800023f2429bce0a94ed6064" }, 17 + "luvit-meta": { "branch": "main", "commit": "ce76f6f6cdc9201523a5875a4471dcfe0186eb60" }, 16 18 "mason.nvim": { "branch": "main", "commit": "e2f7f9044ec30067bc11800a9e266664b88cda22" }, 17 - "neoconf.nvim": { "branch": "main", "commit": "e2528134b185e68f8c7a5584de46a3269037de6b" }, 18 19 "nui.nvim": { "branch": "main", "commit": "b58e2bfda5cea347c9d58b7f11cf3012c7b3953f" }, 19 20 "nvim-cmp": { "branch": "main", "commit": "f17d9b4394027ff4442b298398dfcaab97e40c4f" }, 20 21 "nvim-comment": { "branch": "main", "commit": "e9ac16ab056695cad6461173693069ec070d2b23" }, 22 + "nvim-config-local": { "branch": "main", "commit": "83bb6d9881653a5cf8b489ba8a6fe5a06049a10a" }, 21 23 "nvim-lspconfig": { "branch": "master", "commit": "bc6ada4b0892b7f10852c0b8ca7209fd39a6d754" }, 22 24 "nvim-tree.lua": { "branch": "master", "commit": "4a9e82d10a3715d0c3845e1d2f66ddfb8b711253" }, 23 - "nvim-treesitter": { "branch": "master", "commit": "509d38fee865eefd38eacf17c8920b68cf67b0fd" }, 25 + "nvim-treesitter": { "branch": "master", "commit": "7dc8aabe86db8c2f23520e8334f7584f83e84342" }, 24 26 "nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" }, 25 27 "plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" }, 26 28 "render-markdown.nvim": { "branch": "main", "commit": "4ec7a51856e9324b2b758afe73b64dd05396a9a8" },
+17
nvim/lua/plugins/config-local.lua
··· 1 + return { 2 + "klen/nvim-config-local", 3 + config = function() 4 + require('config-local').setup({ 5 + -- Config file patterns to load (lua supported) 6 + config_files = { "_seth/nvim.lua", ".nvim.lua", ".nvimrc", ".exrc" }, 7 + 8 + -- Where the plugin keeps files data 9 + hashfile = vim.fn.stdpath("data") .. "/config-local", 10 + 11 + autocommands_create = true, -- Create autocommands (VimEnter, DirectoryChanged) 12 + commands_create = true, -- Create commands (ConfigLocalSource, ConfigLocalEdit, ConfigLocalTrust, ConfigLocalIgnore) 13 + silent = false, -- Disable plugin messages (Config loaded/ignored) 14 + lookup_parents = false, -- Lookup config files in parent directories 15 + }) 16 + end 17 + }
-20
nvim/lua/plugins/mason-lspconfig.lua
··· 1 - return { 2 - "williamboman/mason-lspconfig.nvim", 3 - dependencies = { 4 - "folke/neoconf.nvim", 5 - "williamboman/mason.nvim", 6 - }, 7 - config = function() 8 - require("mason-lspconfig").setup() 9 - require("mason-lspconfig").setup_handlers({ 10 - function(server_name) 11 - local disabled = require("neoconf").get( 12 - "servers." .. server_name .. ".disable" 13 - ) 14 - if disabled then return end 15 - 16 - require("lspconfig")[server_name].setup({}) 17 - end, 18 - }) 19 - end, 20 - }
-6
nvim/lua/plugins/mason.lua
··· 1 - return { 2 - "williamboman/mason.nvim", 3 - config = function() 4 - require("mason").setup() 5 - end, 6 - }
-10
nvim/lua/plugins/neoconf.lua
··· 1 - return { 2 - "folke/neoconf.nvim", 3 - config = function() 4 - require("neoconf").setup({ 5 - import = { 6 - vscode = true, 7 - }, 8 - }) 9 - end, 10 - }
+5
nvim/lua/plugins/neodev.lua
··· 1 + return { 2 + "folke/lazydev.nvim", 3 + ft = "lua", -- only load on lua files 4 + opts = {}, 5 + }
+19 -14
nvim/lua/plugins/nvim-lspconfig.lua
··· 1 1 return { 2 - "neovim/nvim-lspconfig", 3 - dependencies = { 2 + { 3 + "neovim/nvim-lspconfig", 4 + dependencies = { 5 + "williamboman/mason.nvim", 6 + }, 7 + config = function() 8 + local lspc = require("lspconfig") 9 + local lspconfig_defaults = lspc.util.default_config 10 + lspconfig_defaults.capabilities = vim.tbl_deep_extend( 11 + "force", 12 + lspconfig_defaults.capabilities, 13 + require("cmp_nvim_lsp").default_capabilities() 14 + ) 15 + lspc.lua_ls.setup({}) 16 + end, 17 + }, 18 + { 4 19 "williamboman/mason.nvim", 5 - "williamboman/mason-lspconfig.nvim", 6 - "folke/neoconf.nvim", 7 - }, 8 - config = function() 9 - local lspc = require("lspconfig") 10 - local lspconfig_defaults = lspc.util.default_config 11 - lspconfig_defaults.capabilities = vim.tbl_deep_extend( 12 - "force", 13 - lspconfig_defaults.capabilities, 14 - require("cmp_nvim_lsp").default_capabilities() 15 - ) 16 - end, 20 + opts = {}, 21 + } 17 22 }
-7
nvim/neoconf.json
··· 1 - { 2 - "servers": { 3 - "denols": { 4 - "disable": true 5 - } 6 - } 7 - }