this repo has no description
0
fork

Configure Feed

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

disable deno by default, format on save

+23 -5
+11 -1
nvim/init.lua
··· 14 14 -- Reserve a space in the gutter 15 15 vim.opt.signcolumn = 'yes' 16 16 17 - 18 17 local cmp = require('cmp') 19 18 20 19 cmp.setup({ ··· 46 45 end 47 46 end, 48 47 }) 48 + 49 + vim.api.nvim_create_autocmd("BufWritePre", { 50 + callback = function() 51 + local mode = vim.api.nvim_get_mode().mode 52 + local filetype = vim.bo.filetype 53 + if vim.bo.modified == true and mode == 'n' then 54 + vim.cmd('lua vim.lsp.buf.format()') 55 + else 56 + end 57 + end 58 + })
+2 -2
nvim/lazy-lock.json
··· 1 1 { 2 2 "auto-dark-mode.nvim": { "branch": "master", "commit": "d365beccca05ffcb01e50109f2adca2459c3995a" }, 3 - "avante.nvim": { "branch": "main", "commit": "8699ada7b23778e4adb6ba69ed916023a09f790c" }, 3 + "avante.nvim": { "branch": "main", "commit": "0aa2659580e5756555577fad3e75eedc34620f25" }, 4 4 "bufferline.nvim": { "branch": "main", "commit": "5c528bee3dd797d5bd6bae5f229411939b25b203" }, 5 5 "cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" }, 6 6 "copilot.lua": { "branch": "master", "commit": "f8d8d872bb319f640d5177dad5fbf01f7a16d7d0" }, ··· 20 20 "nvim-comment": { "branch": "main", "commit": "e9ac16ab056695cad6461173693069ec070d2b23" }, 21 21 "nvim-lspconfig": { "branch": "master", "commit": "bc6ada4b0892b7f10852c0b8ca7209fd39a6d754" }, 22 22 "nvim-tree.lua": { "branch": "master", "commit": "4a9e82d10a3715d0c3845e1d2f66ddfb8b711253" }, 23 - "nvim-treesitter": { "branch": "master", "commit": "dfd3207ed43a0c572c13acc02bf9d7dc270f4030" }, 23 + "nvim-treesitter": { "branch": "master", "commit": "509d38fee865eefd38eacf17c8920b68cf67b0fd" }, 24 24 "nvim-web-devicons": { "branch": "master", "commit": "19d257cf889f79f4022163c3fbb5e08639077bd8" }, 25 25 "plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" }, 26 26 "render-markdown.nvim": { "branch": "main", "commit": "4ec7a51856e9324b2b758afe73b64dd05396a9a8" },
+5 -1
nvim/lua/plugins/neoconf.lua
··· 1 1 return { 2 2 "folke/neoconf.nvim", 3 3 config = function() 4 - require("neoconf").setup() 4 + require("neoconf").setup({ 5 + import = { 6 + vscode = true, 7 + }, 8 + }) 5 9 end, 6 10 }
+5 -1
nvim/neoconf.json
··· 1 1 { 2 - "lspconfig": {} 2 + "servers": { 3 + "denols": { 4 + "disable": true 5 + } 6 + } 3 7 }