Remove old editor configs
This commit is contained in:
parent
e4911d0784
commit
6bbdf31071
2 changed files with 0 additions and 151 deletions
|
@ -1,78 +0,0 @@
|
|||
{
|
||||
"editor.acceptSuggestionOnEnter": "off",
|
||||
"editor.accessibilitySupport": "off",
|
||||
"editor.bracketPairColorization.enabled": true,
|
||||
"editor.cursorBlinking": "smooth",
|
||||
"editor.cursorSmoothCaretAnimation": "on",
|
||||
"editor.fontFamily": "Iosevka Nerd Font",
|
||||
"editor.fontLigatures": false,
|
||||
"editor.suggestSelection": "first",
|
||||
"editor.wordWrap": "on",
|
||||
"editor.wrappingIndent": "deepIndent",
|
||||
"explorer.confirmDelete": false,
|
||||
"explorer.confirmDragAndDrop": false,
|
||||
//Ref: https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers
|
||||
"files.associations": {
|
||||
"*.bu": "yaml",
|
||||
"*.ign": "json",
|
||||
},
|
||||
"gitlab.instanceUrl": "https://git.histalek.de",
|
||||
"glualint.activeLanguages": [
|
||||
"glua",
|
||||
"lua"
|
||||
],
|
||||
"go.toolsManagement.autoUpdate": true,
|
||||
"latex.server.autoDownload": true,
|
||||
"latex-workshop.bind.enter.key": false,
|
||||
"latex-workshop.chktex.enabled": true,
|
||||
"latex-workshop.latex.clean.subfolder.enabled": true,
|
||||
"latex-workshop.message.update.show": false,
|
||||
"latex-workshop.view.pdf.viewer": "tab",
|
||||
"markdownlint.config": {
|
||||
"MD024": {
|
||||
"allow_different_nesting": true
|
||||
},
|
||||
"MD033": {
|
||||
"allowed_elements": [
|
||||
"h1",
|
||||
"img"
|
||||
]
|
||||
},
|
||||
},
|
||||
"oneDarkPro.bold": true,
|
||||
"oneDarkPro.editorTheme": "One Dark Pro Darker",
|
||||
"redhat.telemetry.enabled": false,
|
||||
"svg.preview.mode": "svg",
|
||||
"terminal.integrated.fontFamily": "'monospace','PowerlineSymbols'",
|
||||
"terminal.integrated.persistentSessionReviveProcess": "never",
|
||||
"terminal.integrated.defaultProfile.linux": "zsh",
|
||||
"terminal.integrated.profiles.linux": {
|
||||
"zsh": {
|
||||
"path": "/usr/bin/flatpak-spawn",
|
||||
"args": ["--host", "--env=TERM=xterm-256color", "zsh"]
|
||||
}
|
||||
},
|
||||
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
||||
"window.title": "${activeEditorShort}${separator}${rootPath}",
|
||||
"workbench.colorTheme": "One Dark Pro Darker",
|
||||
"workbench.startupEditor": "newUntitledFile",
|
||||
"workbench.preferredDarkColorTheme": "One Dark Pro Darker",
|
||||
"workbench.preferredHighContrastColorTheme": "One Dark Pro Darker",
|
||||
"yaml.schemas": {
|
||||
"https://github.com/Nemric/Butane-Schemas/releases/latest/download/butane-v1_4_0.json": ["*.bu"]
|
||||
},
|
||||
"[javascript]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"[json]": {
|
||||
"editor.defaultFormatter": "vscode.json-language-features"
|
||||
},
|
||||
"[latex]": {
|
||||
"editor.defaultFormatter": "James-Yu.latex-workshop"
|
||||
},
|
||||
"[yaml]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"workbench.iconTheme": "material-icon-theme",
|
||||
"editor.fontSize": 16,
|
||||
}
|
|
@ -1,73 +0,0 @@
|
|||
--[[
|
||||
lvim is the global options object
|
||||
|
||||
Linters should be
|
||||
filled in as strings with either
|
||||
a global executable or a path to
|
||||
an executable
|
||||
|
||||
Ref.:https://www.lunarvim.org/configuration/01-settings.html#example-options
|
||||
]]
|
||||
|
||||
-- vim options
|
||||
vim.opt.ignorecase = true
|
||||
vim.opt.showmode = true
|
||||
vim.opt.expandtab = true
|
||||
vim.opt.shiftwidth = 2
|
||||
vim.opt.tabstop = 2
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = false
|
||||
vim.opt.wrap = true
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
-- general
|
||||
lvim.log.level = "warn"
|
||||
lvim.format_on_save = true
|
||||
lvim.colorscheme = "gruvbox"
|
||||
|
||||
-- keymappings [view all the defaults by pressing <leader>Lk]
|
||||
lvim.leader = "space"
|
||||
lvim.keys.normal_mode["<C-s>"] = ":w<cr>"
|
||||
lvim.keys.normal_mode["<C-d>"] = ":q<cr>"
|
||||
lvim.keys.normal_mode["<Leader>t"] = ":ToggleTerm dir='%:p:h'<cr>"
|
||||
|
||||
-- After changing plugin config exit and reopen LunarVim, Run :PackerInstall :PackerCompile
|
||||
lvim.builtin.alpha.active = true
|
||||
lvim.builtin.alpha.mode = "startify"
|
||||
lvim.builtin.lualine.style = "default"
|
||||
lvim.builtin.nvimtree.setup.view.side = "left"
|
||||
lvim.builtin.terminal.active = true
|
||||
lvim.builtin.terminal.close_on_exit = true
|
||||
lvim.builtin.terminal.direction = "horizontal"
|
||||
lvim.builtin.terminal.hide_numbers = true
|
||||
lvim.builtin.terminal.open_mapping = [[C-t]]
|
||||
lvim.builtin.terminal.size = 15
|
||||
lvim.builtin.terminal.start_in_insert = true
|
||||
lvim.builtin.bufferline.active = true
|
||||
|
||||
-- if you don't want all the parsers change this to a table of the ones you want
|
||||
lvim.builtin.treesitter.ensure_installed = {
|
||||
"bash",
|
||||
"c",
|
||||
"dockerfile",
|
||||
"go",
|
||||
"javascript",
|
||||
"json",
|
||||
"latex",
|
||||
"lua",
|
||||
"make",
|
||||
"python",
|
||||
"typescript",
|
||||
"css",
|
||||
"rust",
|
||||
"java",
|
||||
"vim",
|
||||
"vue",
|
||||
"yaml",
|
||||
}
|
||||
lvim.builtin.treesitter.ignore_install = { "haskell" }
|
||||
lvim.builtin.treesitter.highlight.enabled = true
|
||||
|
||||
lvim.plugins = {
|
||||
{ "gruvbox-community/gruvbox" },
|
||||
}
|
Loading…
Add table
Reference in a new issue