123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- CONFIG_PATH = vim.fn.stdpath('config')
- DATA_PATH = vim.fn.stdpath('data')
- CACHE_PATH = vim.fn.stdpath('cache')
- O = {
- auto_close_tree = 0,
- auto_complete = true,
- colorscheme = 'lunar',
- hidden_files = true,
- wrap_lines = false,
- number = true,
- relative_number = true,
- cursorline = true,
- shell = 'bash',
- timeoutlen = 100,
- nvim_tree_disable_netrw = 0,
- extras = false,
- -- @usage pass a table with your desired languages
- treesitter = {
- ensure_installed = "all",
- ignore_install = {"haskell"},
- highlight = {enabled = true},
- playground = {enabled = true},
- rainbow = {enabled = false}
- },
- database = {save_location = '~/.config/nvcode_db', auto_execute = 1},
- plugin = {
- hop = {active = false},
- dial = {active = false},
- dashboard = {active = false},
- zen = {active = false}
- },
- lang = {
- python = {
- active = false,
- linter = '',
- -- @usage can be 'yapf', 'black'
- formatter = '',
- autoformat = false,
- isort = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- },
- analysis = {
- type_checking = "basic",
- auto_search_paths = true,
- use_library_code_types = true
- }
- },
- dart = {
- active = false,
- sdk_path = '/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot'
- },
- lua = {
- active = false,
- -- @usage can be 'lua-format'
- formatter = '',
- autoformat = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- }
- },
- sh = {
- active = false,
- -- @usage can be 'shellcheck'
- linter = '',
- -- @usage can be 'shfmt'
- formatter = '',
- autoformat = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- }
- },
- tsserver = {
- active = false,
- -- @usage can be 'eslint'
- linter = '',
- -- @usage can be 'prettier'
- formatter = '',
- autoformat = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- }
- },
- json = {
- active = false,
- -- @usage can be 'prettier'
- formatter = '',
- autoformat = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- }
- },
- tailwindcss = {
- active = false,
- filetypes = {
- 'html', 'css', 'scss', 'javascript', 'javascriptreact',
- 'typescript', 'typescriptreact'
- }
- },
- clang = {
- active = false,
- diagnostics = {
- virtual_text = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- }
- },
- ruby = {
- active = false,
- diagnostics = {
- virtualtext = {spacing = 0, prefix = ""},
- signs = true,
- underline = true
- },
- filetypes = {'rb', 'erb', 'rakefile'}
- },
- go = {active = false},
- elixer = {active = false},
- vim = {active = false},
- yaml = {active = false},
- terraform = {active = false},
- rust = {active = false},
- svelte = {active = false},
- php = {active = false},
- latex = {active = false},
- kotlin = {active = false},
- html = {active = false},
- elm = {active = false},
- emmet = {active = false},
- graphql = {active = false},
- efm = {active = true},
- docker = {active = false},
- cmake = {active = false},
- java = {active = false},
- css = {
- active = false,
- formatter = '',
- autoformat = false,
- virtual_text = true
- }
- },
- dashboard = {
- custom_header = {
- ' _..._ ',
- ' .\' (_`. _ __ ___ ',
- ' : . : | | _ _ _ __ __ _ _ _\\ \\ / (_)_ __ ___ ',
- ' :) () : | | | | | | \'_ \\ / _` | \'__\\ \\ / /| | \'_ ` _ \\ ',
- ' `. . .\' | |__| |_| | | | | (_| | | \\ V / | | | | | | |',
- ' `-...-\' |_____\\__,_|_| |_|\\__,_|_| \\_/ |_|_| |_| |_|'
- },
- footer = {'chrisatmachine.com'}
- }
- }
|