| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- return {
- mode_map = {
- ["n"] = "Normal",
- ["niI"] = "Normal",
- ["niR"] = "Normal",
- ["niV"] = "Normal",
- ["nt"] = "Normal",
- ["ntT"] = "Normal",
- ["v"] = "Visual",
- ["vs"] = "Visual",
- ["V"] = "Visual",
- ["Vs"] = "Visual",
- ["\22"] = "Visual",
- ["\22s"] = "Visual",
- ["s"] = "Select",
- ["S"] = "Select",
- ["\19"] = "Select",
- ["i"] = "Insert",
- ["ic"] = "Insert",
- ["ix"] = "Insert",
- ["R"] = "Insert",
- ["Rc"] = "Insert",
- ["Rx"] = "Insert",
- ["Rv"] = "Insert",
- ["Rvc"] = "Insert",
- ["Rvx"] = "Insert",
- ["r"] = "Insert",
- ["c"] = "Command",
- ["cv"] = "Command",
- ["ce"] = "Command",
- ["!"] = "Terminal",
- ["t"] = "Terminal"
- },
- -- These should be the same length, to keep bar items from jumping around
- mode_display_names = {
- ["Other"] = " Other",
- ["Normal"] = " Normal",
- ["Visual"] = " Visual",
- ["Select"] = " Select",
- ["Insert"] = " Insert",
- ["Command"] = " CMD",
- ["Terminal"] = " TERM"
- },
- diagnostic_icons = {
- ["Error"] = "",
- ["Warn"] = "",
- ["Info"] = "",
- ["Hint"] = "",
- ["Empty"] = ""
- },
- file_node_extensions = {
- ["styl"] = "",
- ["sass"] = "",
- ["scss"] = "",
- ["htm"] = "",
- ["html"] = "",
- ["slim"] = "",
- ["haml"] = "",
- ["ejs"] = "",
- ["css"] = "",
- ["less"] = "",
- ["md"] = "",
- ["mdx"] = "",
- ["markdown"] = "",
- ["rmd"] = "",
- ["json"] = "",
- ["webmanifest"] = "",
- ["js"] = "",
- ["mjs"] = "",
- ["jsx"] = "",
- ["rb"] = "",
- ["gemspec"] = "",
- ["rake"] = "",
- ["php"] = "",
- ["py"] = "",
- ["pyc"] = "",
- ["pyo"] = "",
- ["pyd"] = "",
- ["coffee"] = "",
- ["mustache"] = "",
- ["hbs"] = "",
- ["conf"] = "",
- ["ini"] = "",
- ["yml"] = "",
- ["yaml"] = "",
- ["toml"] = "",
- ["bat"] = "",
- ["mk"] = "",
- ["jpg"] = "",
- ["jpeg"] = "",
- ["bmp"] = "",
- ["png"] = "",
- ["webp"] = "",
- ["gif"] = "",
- ["ico"] = "",
- ["twig"] = "",
- ["cpp"] = "",
- ["c++"] = "",
- ["cxx"] = "",
- ["cc"] = "",
- ["cp"] = "",
- ["c"] = "",
- ["cs"] = "",
- ["h"] = "",
- ["hh"] = "",
- ["hpp"] = "",
- ["hxx"] = "",
- ["hs"] = "",
- ["lhs"] = "",
- ["nix"] = "",
- ["lua"] = "",
- ["java"] = "",
- ["sh"] = "",
- ["fish"] = "",
- ["bash"] = "",
- ["zsh"] = "",
- ["ksh"] = "",
- ["csh"] = "",
- ["awk"] = "",
- ["ps1"] = "",
- ["ml"] = "λ",
- ["mli"] = "λ",
- ["diff"] = "",
- ["db"] = "",
- ["sql"] = "",
- ["dump"] = "",
- ["clj"] = "",
- ["cljc"] = "",
- ["cljs"] = "",
- ["edn"] = "",
- ["scala"] = "",
- ["go"] = "",
- ["dart"] = "",
- ["xul"] = "",
- ["sln"] = "",
- ["suo"] = "",
- ["pl"] = "",
- ["pm"] = "",
- ["t"] = "",
- ["rss"] = "",
- ["f#"] = "",
- ["fsscript"] = "",
- ["fsx"] = "",
- ["fs"] = "",
- ["fsi"] = "",
- ["rs"] = "",
- ["rlib"] = "",
- ["d"] = "",
- ["erl"] = "",
- ["hrl"] = "",
- ["ex"] = "",
- ["exs"] = "",
- ["eex"] = "",
- ["leex"] = "",
- ["heex"] = "",
- ["vim"] = "",
- ["ai"] = "",
- ["psd"] = "",
- ["psb"] = "",
- ["ts"] = "",
- ["tsx"] = "",
- ["jl"] = "",
- ["pp"] = "",
- ["vue"] = "﵂",
- ["elm"] = "",
- ["swift"] = "",
- ["xcplayground"] = "",
- ["tex"] = "ﭨ",
- ["r"] = "ﳒ",
- ["rproj"] = "鉶",
- ["sol"] = "ﲹ",
- ["pem"] = ""
- },
- file_node_exact_matches = {
- ["exact-match-case-sensitive-1.txt"] = "1",
- ["exact-match-case-sensitive-2"] = "2",
- ["gruntfile.coffee"] = "",
- ["gruntfile.js"] = "",
- ["gruntfile.ls"] = "",
- ["gulpfile.coffee"] = "",
- ["gulpfile.js"] = "",
- ["gulpfile.ls"] = "",
- ["mix.lock"] = "",
- ["dropbox"] = "",
- [".ds_store"] = "",
- [".gitconfig"] = "",
- [".gitignore"] = "",
- [".gitattributes"] = "",
- [".gitlab-ci.yml"] = "",
- [".bashrc"] = "",
- [".zshrc"] = "",
- [".zshenv"] = "",
- [".zprofile"] = "",
- [".vimrc"] = "",
- [".gvimrc"] = "",
- ["_vimrc"] = "",
- ["_gvimrc"] = "",
- [".bashprofile"] = "",
- ["favicon.ico"] = "",
- ["license"] = "",
- ["node_modules"] = "",
- ["react.jsx"] = "",
- ["procfile"] = "",
- ["dockerfile"] = "",
- ["docker-compose.yml"] = "",
- ["rakefile"] = "",
- ["config.ru"] = "",
- ["gemfile"] = "",
- ["makefile"] = "",
- ["cmakelists.txt"] = "",
- ["robots.txt"] = "ﮧ"
- }
- }
|