Ecolog (ΡΠΊΠΎΠ»ΠΎΠ³) - your environment guardian in Neovim. Named after the Russian word for "environmentalist", this plugin protects and manages your environment variables with the same care an ecologist shows for nature.
A Neovim plugin for seamless environment variable integration and management. Provides intelligent autocompletion, type checking, and value peeking for environment variables in your projects. All in one place.
Using lazy.nvim:
{
'philosofonusus/ecolog.nvim',
dependencies = {
'hrsh7th/nvim-cmp', -- Optional: for autocompletion support (recommended)
},
-- Optional: you can add some keybindings
-- (I personally use lspsaga so check out lspsaga integration or lsp integration for a smoother experience without separate keybindings)
keys = {
{ '<leader>ge', '<cmd>EcologGoto<cr>', desc = 'Go to env file' },
{ '<leader>ep', '<cmd>EcologPeek<cr>', desc = 'Ecolog peek variable' },
{ '<leader>es', '<cmd>EcologSelect<cr>', desc = 'Switch env file' },
},
-- Lazy loading is done internally
lazy = false,
opts = {
integrations = {
-- WARNING: for both cmp integrations see readme section below
nvim_cmp = true, -- If you dont plan to use nvim_cmp set to false, enabled by default
-- If you are planning to use blink cmp uncomment this line
-- blink_cmp = true,
},
-- Enables shelter mode for sensitive values
shelter = {
configuration = {
-- Partial mode configuration:
-- false: completely mask values (default)
-- true: use default partial masking settings
-- table: customize partial masking
-- partial_mode = false,
-- or with custom settings:
partial_mode = {
show_start = 3, -- Show first 3 characters
show_end = 3, -- Show last 3 characters
min_mask = 3, -- Minimum masked characters
},
mask_char = "*", -- Character used for masking
},
modules = {
cmp = true, -- Enabled to mask values in completion
peek = false, -- Enable to mask values in peek view
files = true, -- Enabled to mask values in file buffers
telescope = false, -- Enable to mask values in telescope integration
telescope_previewer = false, -- Enable to mask values in telescope preview buffers
fzf = false, -- Enable to mask values in fzf picker
fzf_previewer = false, -- Enable to mask values in fzf preview buffers
snacks_previewer = false, -- Enable to mask values in snacks previewer
snacks = false, -- Enable to mask values in snacks picker
}
},
-- true by default, enables built-in types (database_url, url, etc.)
types = true,
path = vim.fn.getcwd(), -- Path to search for .env files
preferred_environment = "development", -- Optional: prioritize specific env files
-- Controls how environment variables are extracted from code and how cmp works
provider_patterns = true, -- true by default, when false will not check provider patterns
},
}
To use the latest features and improvements, you can use the beta branch:
{
'philosofonusus/ecolog.nvim',
branch = 'beta',
-- ... rest of your configuration
}
Even though beta branch may contain more experimental changes, new and shiny features will appear faster here. Consider using it as a contribution to the development of the main branch. Since you can share your feedback.
Setup auto-completion with nvim-cmp
:
require('cmp').setup({
sources = {
{ name = 'ecolog' },
-- your other sources...
},
If you use blink.cmp
see Blink-cmp Integration guide
π Advanced Environment Variable Management
π€ Smart Autocompletion
π‘οΈ Enhanced Security Features
π Integrations
π Multi-Environment Support
π‘ Type System
π¨ UI/UX Features
Command | Description |
---|---|
:EcologPeek [variable_name] |
Peek at environment variable value and metadata |
:EcologPeek |
Peek at environment variable under cursor |
:EcologRefresh |
Refresh environment variable cache |
:EcologSelect |
Open a selection window to choose environment file |
:EcologGoto |
Open selected environment file in buffer |
:EcologGotoVar |
Go to specific variable definition in env file |
:EcologGotoVar [variable_name] |
Go to specific variable definition in env file with variable under cursor |
:EcologShelterToggle [command] [feature] |
Control shelter mode for masking sensitive values |
:EcologShelterLinePeek |
Temporarily reveal value on current line in env file |
:Telescope ecolog env |
Alternative way to open Telescope picker |
:EcologFzf |
Alternative way to open fzf-lua picker (must have fzf-lua installed) |
:EcologSnacks |
Open environment variables picker using snacks.nvim (must have snacks.nvim installed) |
:EcologEnvGet |
Get the value of a specific environment variable(must enable vim_env) |
:EcologCopy [variable_name] |
Copy raw value of environment variable to clipboard |
:EcologCopy |
Copy raw value of environment variable under cursor to clipboard |
Files are loaded in the following priority order:
.env.{preferred_environment}
(if preferred_environment is set).env
.env.*
files (alphabetically)Ecolog can load environment variables directly from your shell environment. This is useful when you want to:
Enable shell variable loading with default settings:
require('ecolog').setup({
load_shell = true
})
For more control over shell variable handling:
require('ecolog').setup({
load_shell = {
enabled = true, -- Enable shell variable loading
override = false, -- When false, .env files take precedence over shell variables
-- Optional: filter specific shell variables
filter = function(key, value)
-- Example: only load specific variables
return key:match("^(PATH|HOME|USER)$") ~= nil
end,
-- Optional: transform shell variables before loading
transform = function(key, value)
-- Example: prefix shell variables for clarity
return "[shell] " .. value
end
}
})
Option | Type | Default | Description |
---|---|---|---|
enabled |
boolean | false |
Enable/disable shell variable loading |
override |
boolean | false |
When true, shell variables take precedence over .env files |
filter |
function|nil | nil |
Optional function to filter which shell variables to load |
transform |
function|nil | nil |
Optional function to transform shell variable values |
filter
to limit which shell variables are loaded to avoid clutteringtransform
to clearly mark shell-sourced variablesoverride
setting when working with both shell and .env variablesEcolog can automatically sync your environment variables with Neovim's built-in vim.env
table, making them available to any Neovim process or plugin.
Enable vim.env module in your setup:
{
vim_env = true, -- false by default
}
vim.env
vim.env
in real-time when environment files changeCommand | Description |
---|---|
:EcologEnvGet |
Get the value of a specific environment variable |
-- In your config
require('ecolog').setup({
vim_env = true,
-- ... other options
})
-- After setup, variables from your .env file will be available in vim.env:
print(vim.env.DATABASE_URL) -- prints your database URL
print(vim.env.API_KEY) -- prints your API key
The provider_patterns
option controls how environment variables are extracted from your code and how completion works. It can be configured in two ways:
As a boolean (for backward compatibility):
provider_patterns = true -- Enables both extraction and completion with language patterns
-- or
provider_patterns = false -- Disables both, falls back to word under cursor and basic completion
As a table for fine-grained control:
provider_patterns = {
extract = true, -- Controls variable extraction from code
cmp = true -- Controls completion behavior
}
The extract
field controls how variables are extracted from code for features like peek, goto definition, etc:
When true
(default): Only recognizes environment variables through language-specific patterns
process.env.MY_VAR
or import.meta.env.MY_VAR
os.environ.get('MY_VAR')
or os.environ['MY_VAR']
When false
: Falls back to the word under cursor if no language provider matches
The cmp
field controls how completion behaves:
When true
(default):
process.env.
in JavaScript)When false
:
Default behavior (strict mode):
provider_patterns = {
extract = true, -- Only extract vars from language patterns
cmp = true -- Only complete in valid contexts
}
Flexible extraction, strict completion:
provider_patterns = {
extract = false, -- Extract any word as potential var
cmp = true -- Only complete in valid contexts
}
Strict extraction, flexible completion:
provider_patterns = {
extract = true, -- Only extract vars from language patterns
cmp = false -- Complete anywhere
}
Maximum flexibility:
provider_patterns = {
extract = false, -- Extract any word as potential var
cmp = false -- Complete anywhere
}
This affects all features that extract variables from code (peek, goto definition, etc.) and how completion behaves.
Ecolog supports custom patterns for matching environment files. This allows you to define your own naming conventions beyond the default .env*
pattern.
Set a single custom pattern:
require('ecolog').setup({
env_file_pattern = "^config/.+%.env$" -- Matches any .env file in the config directory
})
Use multiple patterns:
require('ecolog').setup({
env_file_pattern = {
"^config/.+%.env$", -- Matches .env files in config directory
"^environments/.+%.env$" -- Matches .env files in environments directory
}
})
path
option).env*
) are always included as fallbackenv_file_pattern = {
"^%.env%.%w+$", -- Matches .env.development, .env.production, etc.
"^config/env%.%w+$", -- Matches config/env.development, config/env.production, etc.
"^%.env%.local%.%w+$", -- Matches .env.local.development, .env.local.production, etc.
"^environments/.+%.env$" -- Matches any file ending in .env in the environments directory
}
Ecolog allows you to customize how environment files are sorted using the sort_fn
option. This is useful when you need specific ordering beyond the default alphabetical sorting.
require('ecolog').setup({
sort_fn = function(a, b)
-- Sort by file size (smaller files first)
local a_size = vim.fn.getfsize(a)
local b_size = vim.fn.getfsize(b)
return a_size < b_size
end
})
sort_fn = function(a, b)
local priority = {
[".env.production"] = 1,
[".env.staging"] = 2,
[".env.development"] = 3,
[".env"] = 4
}
local a_name = vim.fn.fnamemodify(a, ":t")
local b_name = vim.fn.fnamemodify(b, ":t")
return (priority[a_name] or 99) < (priority[b_name] or 99)
end
sort_fn = function(a, b)
local a_time = vim.fn.getftime(a)
local b_time = vim.fn.getftime(b)
return a_time > b_time -- Most recently modified first
end
sort_fn = function(a, b)
-- Extract environment type from filename
local function get_env_type(file)
local name = vim.fn.fnamemodify(file, ":t")
return name:match("^%.env%.(.+)$") or ""
end
return get_env_type(a) < get_env_type(b)
end
preferred_environment
optionAdd ecolog
to your nvim-cmp sources:
require('cmp').setup({
sources = {
{ name = 'ecolog' },
-- your other sources...
},
})
Nvim-cmp integration is enabled by default. To disable it:
require('ecolog').setup({
integrations = {
nvim_cmp = false,
},
})
PS: When blink_cmp is enabled, nvim_cmp is disabled by default.
Ecolog provides an integration with blink.cmp for environment variable completions. To enable it:
require('ecolog').setup({
integrations = {
blink_cmp = true,
},
})
{
"saghen/blink.cmp",
opts = {
sources = {
default = { 'ecolog', 'lsp', 'path', 'snippets', 'buffer' },
providers = {
ecolog = { name = 'ecolog', module = 'ecolog.integrations.cmp.blink_cmp' },
},
},
},
}
β οΈ Warning: The LSP integration is currently experimental and may interfere with your existing LSP setup. Use with caution.
Ecolog provides optional LSP integration that enhances the hover and definition functionality for environment variables. When enabled, it will:
meaning you dont need any custom keymaps
To enable LSP integration, add this to your Neovim configuration:
require('ecolog').setup({
integrations = {
lsp = true,
}
})
PS: If you're using lspsaga, please see section LSP Saga Integration don't use lsp integration use one or the other.
If you experience any issues, you can disable the LSP integration:
require('ecolog').setup({
integrations = {
lsp = false,
}
})
Please report such issues on our GitHub repository
Ecolog provides integration with lspsaga.nvim that enhances hover and goto-definition functionality for environment variables while preserving Saga's features for other code elements.
To enable LSP Saga integration, add this to your configuration:
require('ecolog').setup({
integrations = {
lspsaga = true,
}
})
PS: If you're using lspsaga then don't use lsp integration use one or the other.
The integration adds two commands that intelligently handle both environment variables and regular code:
EcologSagaHover:
EcologSagaGD (Goto Definition):
π‘ Note: When enabled, the integration automatically detects and updates your existing Lspsaga keymaps to use Ecolog's enhanced functionality. No manual keymap configuration required!
{
'philosofonusus/ecolog.nvim',
dependencies = {
'nvimdev/lspsaga.nvim',
'hrsh7th/nvim-cmp',
},
opts = {
integrations = {
lspsaga = true,
}
},
}
π‘ Note: The LSP Saga integration provides a smoother experience than the experimental LSP integration if you're already using Saga in your setup.
First, load the extension:
require('telescope').load_extension('ecolog')
Then configure it in your Telescope setup (optional):
require('telescope').setup({
extensions = {
ecolog = {
shelter = {
-- Whether to show masked values when copying to clipboard
mask_on_copy = false,
},
-- Default keybindings
mappings = {
-- Key to copy value to clipboard
copy_value = "<C-y>",
-- Key to copy name to clipboard
copy_name = "<C-n>",
-- Key to append value to buffer
append_value = "<C-a>",
-- Key to append name to buffer (defaults to <CR>)
append_name = "<CR>",
},
}
}
})
Ecolog integrates with fzf-lua to provide a fuzzy finder interface for environment variables.
require('ecolog').setup({
integrations = {
fzf = {
shelter = {
mask_on_copy = false, -- Whether to mask values when copying
},
mappings = {
copy_value = "ctrl-y", -- Copy variable value to clipboard
copy_name = "ctrl-n", -- Copy variable name to clipboard
append_value = "ctrl-a", -- Append value at cursor position
append_name = "enter", -- Append name at cursor position
},
}
}
})
You can trigger the FZF picker using :EcologFzf
command.
Open the environment variables picker:
:EcologFzf
Key | Action |
---|---|
<Enter> |
Insert variable name |
<C-y> |
Copy value to clipboard |
<C-n> |
Copy name to clipboard |
<C-a> |
Append value to buffer |
All keymaps are customizable through the configuration.
Ecolog integrates with snacks.nvim to provide a modern and beautiful picker interface for environment variables.
require('ecolog').setup({
integrations = {
snacks = {
shelter = {
mask_on_copy = false, -- Whether to mask values when copying
},
keys = {
copy_value = "<C-y>", -- Copy variable value to clipboard
copy_name = "<C-u>", -- Copy variable name to clipboard
append_value = "<C-a>", -- Append value at cursor position
append_name = "<CR>", -- Append name at cursor position
},
layout = { -- Any Snacks layout configuration
preset = "dropdown",
preview = false,
},
}
}
})
You can trigger the Snacks picker using :EcologSnacks
command.
Open the environment variables picker:
:EcologSnacks
Key | Action |
---|---|
<CR> |
Insert variable name |
<C-y> |
Copy value to clipboard |
<C-u> |
Copy name to clipboard |
<C-a> |
Append value to buffer |
All keymaps are customizable through the configuration.
Ecolog provides a built-in statusline component that shows your current environment file, variable count, and shelter mode status. It supports both native statusline and lualine integration.
require('ecolog').setup({
integrations = {
snacks = {
shelter = {
mask_on_copy = false, -- Whether to mask values when copying
},
keys = {
copy_value = "<C-y>", -- Copy variable value to clipboard
copy_name = "<C-n>", -- Copy variable name to clipboard
append_value = "<C-a>", -- Append value at cursor position
append_name = "<CR>", -- Append name at cursor position
},
}
}
})
You can trigger the Snacks picker using :EcologSnacks
command.
Open the environment variables picker:
:EcologSnacks
Key | Action |
---|---|
<CR> |
Insert variable name |
<C-y> |
Copy value to clipboard |
<C-n> |
Copy name to clipboard |
<C-a> |
Append value to buffer |
All keymaps are customizable through the configuration.
ecolog.nvim
integrates with various file pickers to provide a secure way to use file picker without leaking sensitive data, when searching for files.
Configuration:
require('ecolog').setup({
shelter = {
modules = {
telescope_previewer = true, -- Mask values in telescope preview buffers
}
}
})
Configuration:
require('ecolog').setup({
shelter = {
modules = {
fzf_previewer = true, -- Mask values in fzf preview buffers
}
}
})
Configuration:
require('ecolog').setup({
shelter = {
modules = {
snacks_previewer = true, -- Mask values in snacks previewer
}
}
})
Ecolog includes a flexible type system for environment variables with built-in and custom types.
Configure types through the types
option in setup:
require('ecolog').setup({
custom_types = {
semver = {
pattern = "^v?%d+%.%d+%.%d+%-?[%w]*$",
validate = function(value)
local major, minor, patch = value:match("^v?(%d+)%.(%d+)%.(%d+)")
return major and minor and patch
end,
},
aws_region = {
pattern = "^[a-z]{2}%-[a-z]+%-[0-9]$",
validate = function(value)
local valid_regions = {
["us-east-1"] = true,
["us-west-2"] = true,
-- ... etc
}
return valid_regions[value] == true
end
}
},
types = {
-- Built-in types
url = true, -- URLs (http/https)
localhost = true, -- Localhost URLs
ipv4 = true, -- IPv4 addresses
database_url = true, -- Database connection strings
number = true, -- Integers and decimals
boolean = true, -- true/false/yes/no/1/0
json = true, -- JSON objects and arrays
iso_date = true, -- ISO 8601 dates (YYYY-MM-DD)
iso_time = true, -- ISO 8601 times (HH:MM:SS)
hex_color = true, -- Hex color codes (#RGB or #RRGGBB)
}
})
You can also:
types = true
types = false
require('ecolog').setup({
custom_types = {
jwt = {
pattern = "^[A-Za-z0-9%-_]+%.[A-Za-z0-9%-_]+%.[A-Za-z0-9%-_]+$",
validate = function(value)
local parts = vim.split(value, ".", { plain = true })
return #parts == 3
end
},
}
types = {
url = true,
number = true,
}
})
Each custom type requires:
pattern
(required): A Lua pattern string for initial matchingvalidate
(optional): A function for additional validationtransform
(optional): A function to transform the valueExample usage in .env files:
VERSION=v1.2.3 # Will be detected as semver type
REGION=us-east-1 # Will be detected as aws_region type
AUTH_TOKEN=eyJhbG.eyJzd.iOiJ # Will be detected as jwt type
Selective Protection: Enable shelter mode only for sensitive environments:
-- In your config
if vim.fn.getcwd():match("production") then
require('ecolog').setup({
shelter = {
configuration = {
partial_mode = {
show_start = 3, -- Number of characters to show at start
show_end = 3, -- Number of characters to show at end
min_mask = 3, -- Minimum number of mask characters
}
mask_char = "*", -- Character used for masking
},
modules = {
cmp = true, -- Mask values in completion
peek = true, -- Mask values in peek view
files = true, -- Mask values in files
telescope = false -- Mask values in telescope
telescope_previewer = false -- Mask values in telescope preview buffers
}
},
path = vim.fn.getcwd(), -- Path to search for .env files
preferred_environment = "development", -- Optional: prioritize specific env files
})
end
Custom Masking: Use different characters for masking:
shelter = {
configuration = {
mask_char = "β’" -- Use dots
}
}
-- or
shelter = {
configuration = {
mask_char = "β" -- Use blocks
}
}
-- or
shelter = {
configuration = {
highlight_group = "NonText" -- Use a different highlight group for masked values
}
}
The highlight_group
option allows you to customize the highlight group used for masked values. By default, it uses the Comment
highlight group. You can use any valid Neovim highlight group name.
Temporary Viewing: Use :EcologShelterToggle disable
temporarily when you need to view values, then re-enable with :EcologShelterToggle enable
Security Best Practices:
The plugin seamlessly integrates with your current colorscheme:
Element | Color Source |
---|---|
Variable names | Identifier |
Types | Type |
Values | String |
Sources | Directory |
It's author's (philosofonusus
) personal setup for ecolog.nvim if you don't want to think much of a setup and reading docs:
return {
{
'philosofonusus/ecolog.nvim',
keys = {
{ '<leader>ge', '<cmd>EcologGoto<cr>', desc = 'Go to env file' },
{ '<leader>ec', '<cmd>EcologSnacks<cr>', desc = 'Open a picker' },
{ '<leader>eS', '<cmd>EcologSelect<cr>', desc = 'Switch env file' },
{ '<leader>es', '<cmd>EcologShelterToggle<cr>', desc = 'Ecolog shelter toggle' },
},
lazy = false,
opts = {
preferred_environment = 'local',
types = true,
integrations = {
lspsaga = true,
nvim_cmp = true,
statusline = {
hidden_mode = true,
},
snacks = true,
},
shelter = {
configuration = {
partial_mode = {
min_mask = 5,
show_start = 1,
show_end = 1,
},
mask_char = '*',
},
modules = {
files = true,
peek = false,
snacks_previewer = true,
cmp = true,
},
},
path = vim.fn.getcwd(),
},
},
}
While ecolog.nvim
has many great and unique features, here are some comparisons with other plugins in neovim ecosystem in their specific fields:
Feature | ecolog.nvim | cmp-dotenv |
---|---|---|
Language-aware Completion | β Fully configurable context-aware triggers for multiple languages and filetypes | β Basic environment variable completion only on every char |
Type System | β Built-in type validation and custom types | β No type system |
Nvim-cmp support | β Nvim-cmp integration | β Nvim-cmp integration |
Blink-cmp support | β Native blink-cmp integration | β Doesn't support blink-cmp natively |
Documentation Support | β Rich documentation with type info and source | π‘ Basic documentation support |
Shell Variable Integration | β Configurable shell variable loading and filtering | π‘ Basic shell variable support |
Multiple Environment Files | β Priority-based loading with custom sorting and switching between multiple environment files | π‘ Basic environment variable loading |
Feature | ecolog.nvim | cloak.nvim |
---|---|---|
Partial Value Masking | β Configurable partial masking with patterns | π‘ Full masking only |
Pattern-based Security | β Custom patterns for different security levels | π‘ Basic pattern matching |
Preview Protection | β Telescope/FZF/Snacks picker preview protection | π‘ Only Telescope preview protection |
Mask sensitive values on startup | β Full support, never leak environment variables | β Doesn't support masking on startup, flashes values |
Mask on leave | β Supports | β Supports |
Completion disable | β Supports both blink-cmp and nvim-cmp, configurable | π‘ Only nvim-cmp and can't disable |
Custom mask and highlights | β Supports | β Supports |
Supports custom integrations | β Supports all ecolog.nvim features telescope-lua, snacks, fzf-lua, cmp, peek and etc. | π‘ Only works in file buffers and telescope previewer |
Filetype support | π‘ Supports only sh and .env files |
β Can work in any filetype |
Feature | ecolog.nvim | telescope-env.nvim |
---|---|---|
Environment Variable Search | β Basic search | β Basic search |
Customizable keymaps | β Fully customizable | β Fully customizable |
Value Preview | β Protected value preview | π‘ Basic value preview |
Multiple Picker Support | β Telescope, Snacks picker and FZF support | π‘ Telescope only |
Security Features | β Integrated security in previews | β No security features |
Custom Sort/Filter | β Advanced sorting and filtering options | π‘ Basic sorting only |
Feature | ecolog.nvim | dotenv.nvim |
---|---|---|
Environment File Detection | β Custom patterns and priority-based loading | π‘ Basic env file loading |
Multiple Environment Support | β Advanced environment file switching | π‘ Basic environment support |
Shell Variable Integration | β Configurable shell variable loading and filtering | β No shell integration |
Contributions are welcome! Feel free to:
MIT License - See LICENSE for details.